This project focuses on analyzing the Netflix Dataset. The dataset contains information about TV Shows and Movies available on Netflix until 2021
I used the Pandas library to import and explore the dataset. The dataset is in CSV format and by applying pd.read_csv function to import the dataset and store it in a DataFrame named ‘data’.
isnull function: Used to find null values
isin function: Used to filter data based on specific valuesstr.contains function: Used to filter data based on string patternsto_datetime function: Used to convert strings to datetime objectsgroupby function: Used to group data based on specific criteriamin, max, and mean functions: Used to calculate statistical measuresSeaborn library: Used to create visually appealing bar graphs
Using AND and OR operators