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

IPL Data Analysis

In this project we will do exploratory data analysis using pandas ,numpy ,matplotlib and seaborn on past few years IPL data. We will try to define relationshp between toss & win , will also get top batsman from diffrent teams & most man of the match award winner.

!pip install jovian --upgrade --quiet
!pip install pandas --upgrade --quiet
!pip install matplotlib --upgrade --quiet
!pip install seaborn --upgrade --quiet
#loading the required libraries
import pandas as pd
from matplotlib import pyplot as plt
import seaborn as sns
#loading the ipl match dataset
ipl = pd.read_csv('matches.csv')
ipl