Authors: Maria Onido and Aditi Padhi
"In economics, there’s a concept called purchasing power parity, in which there’s a theoretical exchange rate that allows you to buy the same amount of goods and services in every country."
"Netflix is a streaming service that offers a wide variety of award-winning TV shows, movies, anime, documentaries, and more on thousands of internet-connected devices." It is one of the most popular streaming services today. It is available on a wide variety of countries and its subscription price ranges from country to country as well.
On 'www.comparitech.com/blog/vpn-privacy/countries-netflix-cost/', there are a variety of data concerning Netflix pricing across countries. For simplicity's sake, we choose the first table containing 12 random countries consisting of netflix prices with ads, one of those countries including Canada. Upon getting this data, we only selected the necessary columns.
The website, 'https://taxsummaries.pwc.com/quick-charts/value-added-tax-vat-rates', consists of data involving VAT rates across countries. We will aggregate the VAT rates to the Netflix pricing data.
In order to combine our data, we had to have a common table for the join function to work.
Thus, we had to change the way the column "Territory" is formatted in our VAT table. It included when the country's VAT was last reviewed. For Analysis, we didn't need that, so we had to get rid of it. We then removed all the white spaces between the territory names so that we have a temporary common column. We also added a temporary common column in our Netflix table without the white spaces in the country names. This is so that it will be completely identical for our join function.
"South Korea " (with space at the end) is not the same as "South Korea" (without the space at the end).
As we join our Netflix table with our VAT table, the countries in our Netflix table only remained because it is the only country that is in common with the VAT table. We then dropped the temporary country column and kept the "Country" column from the Netflix pricing table.
After scraping, we needed to so some data cleaning for the data to be interpretable for analysis.
- We split Prices Local column in our Netflix table into 2 columns; Prices and Currency Codes.
- Dropped Brazil after some research as the VAT in the country is very complex.
- Cleaned the 'Standard VAT rate %' column by determining the value base on the original column and some research.

Our prices and VAT rates are now floats and are ready to work with. We multiplied each price with the corresponding VAT percentage (as a decimal) and added that value to the original price. In this way we get an idea of how much you will eventually pay.
This is the conversion function we used. It is inspired from a very similar function from CMPUT 174. It will take three arguments:
- Argument 1 is the currency you are converting from
- Argument 2 is the currency you are converting to
- Argument 3 is the amount in the currency you are converting from
To obtain a conversion to column, we had to make an array of 'CAD' the same length as our table. We converted all the prices with VAT rates added using a conversion function we made. In this way all of the prices are all in the same units - Canadian Dollars.
Since all of the prices are now in the same units, we subtracted Canada's price with VAT from each of the countries. This is if you live in Canada, which country could you find the price for Netflix the cheapest out of all the ones we have. We removed Canada because it is the country we are basing the difference from.
As you can see South Korea is the only country that is in the slight negatives, meaning it is lower than Canada's price with taxes. The rest of the countries have prices higher than Canada.
Since Netflix heavily involves access to the internet, we choosed the percentage of internet usage per country for our external factor. We gathered the csv file with this Data from 'https://www.kaggle.com/datasets/tanuprabhu/list-of-countries-by-number-of-internet-users'. Upon reading the csv file into a table, we only selected the necessary columns for analysis.
This data set also needed some cleaning. We cleaned the 'Percentage' column by getting rid of the % and other excess information. We then turned whatever we had left into a float type.
South Korea has the highest internet usage at 95.1 and Italy has the lowest at 65.1.
From the scatterplot, there is a weak negative correlation between the differences and internet usage per country. The correlation calculated is around -0.3. This means that there is a slight trend that as the internet usage goes up, the price of Netflix goes down.
No, it does not imply causation. There are confounding factors involve.
- Number of movies available in each country can affect the subscription price.
- Netflix might introduce a new product feature that can up their price.
- Fluctuations in the economy. For Example, as fears of recession and cost of living goes up, some people might re-evaluate their expenses and this can affect the price of Netflix.
- These are just examples, there's more that is involved.
In this assignment, we have learnt that a Netflix subscription is the cheapest in South Korea.
So, if you want to buy a Netflix subscription at a cheaper price than Canada and save some money every month, you should plan on moving to South Korea
https://upload.wikimedia.org/wikipedia/commons/7/7a/Logonetflix.png https://docs.google.com/document/d/11eFi3iy0TIwzh9KY3BYRP5IhXcS7WRZswExTSKYOz8w/edit - for synopsis https://www.netflix.com/ca/ - What is Netflix?






