Premier League 2020-21 Season Stats
all 38 matchday stats about premier league season 2020-21
@kaggle.afnanurrahim_premier_league_2020_21_season_stats
all 38 matchday stats about premier league season 2020-21
@kaggle.afnanurrahim_premier_league_2020_21_season_stats
This dataset contains statistics of all the 38 matchdays played in the season 2020-21.
There are 3 files:
away_teams: This contains stats of the away team that played on a particular matchday.
home_teams: This contains stats of the home team that played on a particular matchday.
matchday_results: Contains the match result (goals scored) of both the teams that played.
This data was fetched with the help of Api-football-Beta api hosted on rapidapi.
CREATE TABLE away_teams_stats (
"unnamed_0" BIGINT -- Unnamed: 0,
"fixture_id" BIGINT,
"away_team_id" BIGINT,
"away_team_name" VARCHAR,
"shots_on_goal" DOUBLE,
"shots_off_goal" DOUBLE,
"total_shots" BIGINT,
"blocked_shots" DOUBLE,
"shots_insidebox" DOUBLE,
"shots_outsidebox" DOUBLE,
"fouls" BIGINT,
"corner_kicks" DOUBLE,
"offsides" DOUBLE,
"ball_possession" VARCHAR,
"yellow_cards" DOUBLE,
"red_cards" DOUBLE,
"goalkeeper_saves" DOUBLE,
"total_passes" BIGINT,
"passes_accurate" BIGINT,
"passes" VARCHAR -- Passes %
);
CREATE TABLE home_teams_stats (
"unnamed_0" BIGINT -- Unnamed: 0,
"fixture_id" BIGINT,
"home_team_id" BIGINT,
"home_team_name" VARCHAR,
"shots_on_goal" DOUBLE,
"shots_off_goal" DOUBLE,
"total_shots" BIGINT,
"blocked_shots" DOUBLE,
"shots_insidebox" DOUBLE,
"shots_outsidebox" DOUBLE,
"fouls" BIGINT,
"corner_kicks" DOUBLE,
"offsides" DOUBLE,
"ball_possession" VARCHAR,
"yellow_cards" DOUBLE,
"red_cards" DOUBLE,
"goalkeeper_saves" DOUBLE,
"total_passes" BIGINT,
"passes_accurate" BIGINT,
"passes" VARCHAR -- Passes %
);
CREATE TABLE matchday_results (
"unnamed_0" BIGINT -- Unnamed: 0,
"fixture_id" BIGINT,
"fixture_date" VARCHAR,
"teams_home_id" BIGINT,
"teams_home_name" VARCHAR,
"teams_home_winner" VARCHAR,
"teams_away_id" BIGINT,
"teams_away_name" VARCHAR,
"teams_away_winner" VARCHAR,
"goals_home" BIGINT,
"goals_away" BIGINT
);
Anyone who has the link will be able to view this.