IPL Teamwise Dataset
Dataset of current Indian Premier League Teams
@kaggle.amritharj_ipl_teamwise_dataset
Dataset of current Indian Premier League Teams
@kaggle.amritharj_ipl_teamwise_dataset
This dataset contains the data of all currently active Indian Premier League teams. This data can be used to analyze the performance of each team in the IPL. This dataset is useful for Exploratory Data Analysis.
Data source: - https://stats.espncricinfo.com/ci/engine/records/team/results_summary.html?id=117;type=trophy
CREATE TABLE ipl (
"sl_no" BIGINT -- Sl. No.,
"team" VARCHAR,
"home_ground" VARCHAR,
"city" VARCHAR,
"debut" BIGINT,
"total_plays" BIGINT,
"wins" BIGINT,
"lost" BIGINT,
"tied" BIGINT,
"tie_w" BIGINT -- Tie + W,
"tie_l" BIGINT -- Tie + L,
"no_result" BIGINT,
"winning_percentage" DOUBLE,
"total_title_wins" BIGINT,
"no_of_seasons_played" BIGINT -- No. Of Seasons Played,
"captain" VARCHAR,
"head_coach" VARCHAR,
"highest_score" BIGINT
);
Anyone who has the link will be able to view this.