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

Ipl Data Analysis Using Python, Pandas, Matplotlib and Seaborn

Firstly IPL stands for Indian premeire league where different teams play cricket, So in this project we will be doing Analysis on Ipl data using Python, Pandas, Numpy and Seaborn and make various charts like Lolipop chart, Bar graph, Line chart and Histogram
# Importing the required libraries
import pandas as pd
from matplotlib import pyplot as plt
import seaborn as sns
import numpy as np
# Reading the CSV file using read_csv finction
ipldata = pd.read_csv('matches.csv')
# head method is used to see top values by default it shows only top 5 values
ipldata.head()