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

IPL Analysis

We have IPL Ball by Ball Data till 2019 .We can do analysis like Most runs scored in powerplay by batsman,etc., Let's Go into Analysis.

import pandas as pd
ipl_df=pd.read_csv('deliveries.csv')
ipl_df

Shape of the dataset is

ipl_df.shape
(179078, 21)