Learn practical skills, build real-world projects, and advance your career

IPL (2008-2019) Data Analysis

IPL stands for Indian Premier League.This is a professional Twenty20 cricket league in India contested during March or April and May of every year.

I have used IPL(2008-2019) Dataset for Analysis. Which I have downloaded from Kaggle Dataset. This Dataset contains two csv file : deliveries.csv and matches.csv. Using these two csv file I have done some interesting analysis.

I am doing this analysis as a project of Data Analysis with Python: Zero to Pandas course.

I have uploaded these two csv file manually.

project_name = "ipl(2008-2019) data analysis" 

Let's load the CSV files using the Pandas library. I will use the name deliveries_raw_df and matches_raw_df for the data frame, to indicate that this is unprocessed data that which I might clean, filter and modify to prepare a data frame that's ready for analysis.

import pandas as pd