Baselight

Indian Premier League(IPL) 2023 Dataset

IPL 2023 Data - Matches, Players, Teams Details.

@kaggle.gauravkuchaurasiya_indian_premier_leagueipl_2023_dataset

Loading...
Loading...

About this Dataset

Indian Premier League(IPL) 2023 Dataset

This dataset provides comprehensive information on the Indian Premier League (IPL) 2023 season. It includes data on cricket matches, players, and teams participating in the tournament. The data has been collected through web scraping from various sources including ESPN Cricinfo.

Cricket Matches Data:

  • The cricket match data contains details of each match played during the IPL 2023 season.
  • Each record includes information such as match number, match ID, teams competing in the match, venue, result, and player of the match.
    Players Data:
  • The player's data consists of detailed information about individual players participating in the IPL 2023 season.
  • It includes player names, date of birth, age, batting style, bowling style, playing role, and any known relations (e.g., family members).
    Team Data:
  • The team data provides comprehensive profiles of all teams competing in the IPL 2023 season.
  • Each team profile includes details such as team ID, team name, captain, coach, home ground, IPL titles won, and owners.

Tables

Cricket Matches

@kaggle.gauravkuchaurasiya_indian_premier_leagueipl_2023_dataset.cricket_matches
  • 9.08 kB
  • 74 rows
  • 7 columns
Loading...
CREATE TABLE cricket_matches (
  "match_number" VARCHAR,
  "match_id" VARCHAR,
  "team_1" VARCHAR,
  "team_2" VARCHAR,
  "venue" VARCHAR,
  "result" VARCHAR,
  "player_of_the_match" VARCHAR
);

Player Details

@kaggle.gauravkuchaurasiya_indian_premier_leagueipl_2023_dataset.player_details
  • 23.11 kB
  • 261 rows
  • 13 columns
Loading...
CREATE TABLE player_details (
  "height" VARCHAR,
  "full_name" VARCHAR,
  "fielding_position" VARCHAR,
  "age" VARCHAR,
  "n__cousin" VARCHAR  -- (cousin),
  "batting_style" VARCHAR,
  "bowling_style" VARCHAR,
  "education" VARCHAR,
  "also_known_as" VARCHAR,
  "playing_role" VARCHAR,
  "nicknames" VARCHAR,
  "relations" VARCHAR,
  "born" VARCHAR
);

Team Details

@kaggle.gauravkuchaurasiya_indian_premier_leagueipl_2023_dataset.team_details
  • 6.77 kB
  • 10 rows
  • 7 columns
Loading...
CREATE TABLE team_details (
  "team_id" BIGINT,
  "team_name" VARCHAR,
  "captain" VARCHAR,
  "coach" VARCHAR,
  "home_ground" VARCHAR,
  "ipl_titles" VARCHAR,
  "owners" VARCHAR
);

Share link

Anyone who has the link will be able to view this.