IPL 2023 Project Notes

Download as pdf or txt
Download as pdf or txt
You are on page 1of 11

Project PowerBI & Datasets

Download and Install IHHPET Learning Application


Contact for IHHPET App Support
+91-7880-113-112

Indian Premier League Data Analysis: IPL T20 (2008-12)

Dataset is available in “Free Data Analyst Course” kindly download in our android
application: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet

Problem Statement 1: Analysis of IPL all season data and find the
Most Run Score by Team in year 2008,2012,2017 & 2020?

Problem Statement 2: Analyse the data and show most IPL matches
played in Venue in 2010,2015,2018 and 2021 IPL season?

Problem Statement 3: Show total runs, total wickets and run rate
according to season wise?

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Problem Statement 4: Find the most IPL run by top 10 batsman in the
season 2008 to 2021?

Problem Statement 5: Analysis of IPL 2008-21 data and find the top
10 bowlers in the season 2008 to 2021?

Problem Statement 6: Compare IPL team bowling stats & analyse the
runs, no balls and wide balls according to the season wise?

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet
Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
IPL Dashboard Output Page 1:

IPL Dashboard Output Page 2:

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
IPL Dashboard Output Page 3:

IPL Dashboard Output Page 4:

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Problem Statement 1: Analysis of IPL all season data and find the
Most Run Score by Team in year 2008,2012,2017 & 2020?

Output:

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
IPL DATA ANALYSIS AND VISUALIZATION WITH PYTHON
Now, with a basic understanding of the attributes let us now start our project of data
analysis and visualization of the IPL dataset with Python. We will initially perform simple
statistical analysis and then slowly build to more advanced analysis.

To calculate the most run scored by a team across all seasons we have grouped by Team
and have summed up the run scored by them. And finally, sort them in descending order.

Without any surprise, MI is at the top of the list.

In []:
import math
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
df=pd.read_csv('data.csv')
df.head()
df.info()
df.groupby(['batting_team'])['run'].sum().sort_values(ascending=False)
plt.figure(figsize=(10,8))
data =
df.groupby(['match_id','season']).count().index.droplevel(level=0).value_co
unts().sort_index()
sns.barplot(y=data.index,x=data,orient='h')
plt.xlabel('Matches Played')
plt.ylabel('Season')
plt.show(

[Out] :

batting_team

Mumbai Indians 32329

Royal Challengers Bangalore 30255

Kings XI Punjab 30064

Kolkata Knight Riders 29419

Chennai Super Kings 28372

Rajasthan Royals 24542

Delhi Daredevils 24296


Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet
Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Sunrisers Hyderabad 19362

Deccan Chargers 11463

Pune Warriors 6358

Delhi Capitals 5309

Gujarat Lions 4862

Rising Pune Supergiant 4533

Kochi Tuskers Kerala 1901

Name: run, dtype: int64

Virat Kohli Performance Dashboard


View Other Power Bi Dashboard:
Watch Video: https://www.youtube.com/watch?v=7Tit22BUQy4

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Netflix Dashboard
View Other Power Bi Dashboard:
Watch Video: https://www.youtube.com/watch?v=ds69YbxuGVE

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Amazon Superstore Sales Analysis Dashboard
View Other Power Bi Dashboard:
Watch Video: https://www.youtube.com/watch?v=2OgcZF72oEs

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com
Scan and download
the App Now

Install our IHHPET Android App: https://play.google.com/store/apps/details?id=com.logixhunt.ihhpet


Contact : +91-7880-113-112 | Visit Website: www.industrieshelpinghands.com

You might also like