Pakistan's T20 World Cup Journey (2007 - 2022)
Dive deep into Pakistan's T20 World Cup history with match-by-match data!
@kaggle.saadrasheed20_t20_world_cups_data_pakistan_team_2007_2022
Dive deep into Pakistan's T20 World Cup history with match-by-match data!
@kaggle.saadrasheed20_t20_world_cups_data_pakistan_team_2007_2022
This dataset chronicles Pakistan's performance in the T20 World Cup from 2007 to 2022. Compiled from ESPNcricinfo (https://www.espncricinfo.com/), a leading cricket information website, this resource provides a comprehensive overview of each match, including:
Match details: Date, venue, opponent
Team batting/bowling scores
Individual player stats: Runs scored, wickets taken, bowling economy
Match outcome: Win/loss
Inspiration:
This dataset is designed to be a valuable tool for cricket enthusiasts, data analysts, and anyone interested in exploring Pakistan's T20 World Cup journey. It can be used for:
Statistical analysis: Identify trends, patterns, and key players in Pakistan's T20 World Cup performances.
Machine learning: Train models to predict future outcomes or player performance.
Visualization: Create insightful charts and graphs to understand Pakistan's strengths and weaknesses.
By sharing this data, I hope to contribute to the cricket analytics community and foster a deeper understanding of the sport's most exciting format.
CREATE TABLE wc_t20_pakistan (
"unnamed_0" BIGINT -- Unnamed: 0,
"match_number" VARCHAR,
"venue" VARCHAR,
"team_bat_first" VARCHAR,
"n_1st_innings_score" VARCHAR -- 1st Innings Score,
"team_bat_second" VARCHAR,
"n_2nd_innings_score" VARCHAR -- 2nd Innings Score,
"result" VARCHAR,
"year" BIGINT,
"scores_players_team_bat_first" VARCHAR -- Scores - Players (Team Bat First),
"over_by_over_score_1st_innings" VARCHAR -- Over By Over Score (1st Innings),
"extras_team_bat_first" VARCHAR -- Extras (Team Bat First),
"fall_of_wickets_team_bat_first" VARCHAR -- Fall Of Wickets (Team Bat First),
"bowling_team_bowling_first" VARCHAR -- Bowling (Team Bowling First),
"scores_players_team_bat_second" VARCHAR -- Scores - Players (Team Bat Second),
"over_by_over_score_2nd_innings" VARCHAR -- Over By Over Score (2nd Innings),
"extras_team_bat_second" VARCHAR -- Extras (Team Bat Second),
"fall_of_wickets_team_bat_second" VARCHAR -- Fall Of Wickets (Team Bat Second),
"bowling_team_bowling_second" VARCHAR -- Bowling (Team Bowling Second)
);
Anyone who has the link will be able to view this.