Which countries pay the most and least for Netflix in 2021?

You can access the Netflix Subscription data via (https://raw.githubusercontent.com/tisage/CISC540/main/data/Lab_3/netflix_fee_12_2021.csv).

Use pandas library to read your data. Write your code to answer the following questions. (You can choose to use numpy or pandas or any libraries you feel comfortable.)

import numpy as npimport pandas as pddata = pd.read_csv('https://raw.githubusercontent.com/tisage/CISC540/main/data/Lab_3/netflix_fee_12_2021.csv', header = 0)print(data.dtypes)df = data.valuesdata.head()

Which country has the highest/lowest library size?


Which country has the highest/lowest subscription fee in average per month?


Which country has the lowest subscription fee in Basic tier?


Which country has the highest subscription fee in Premium tier?


Which subscription tier has the least price fluctuation (standard deviation)?


What's the portion of countries that has more than average subscription fee in Standard tier?


Can you visualize the histogram of subscription fee in Standard tier?