Baselight

Premier League Standings 2021-22 (Oct 13–2021)

Latest EPL Soccer Table of 20 Teams

@kaggle.pratmo_premier_league_standings_202122_oct_13_2021

Loading...
Loading...

About this Dataset

Premier League Standings 2021-22 (Oct 13–2021)

Content

Latest Premier League team standings as of October 13th 2021.

Attributes Information

Team: The team names
Played: How many matches played so far
Won: How many games won
Drawn: How many games drawn
Lost: How many games lost
For: How many goals scored
Against: How many goals conceded
Goal Difference: The goal difference is calculated as For minus Against. In case there is tie in total points between two teams, the team with greater goal difference stands above.
Points: Total points each team has
Form Last 5 Games: Form of last five games

Source

Link - https://www.bbc.com/sport/football/tables
robots.txt permissions can be found in https://www.bbc.co.uk/robots.txt

Banner Image: Photo by Tim Bechervaise on Unsplash

Inspiration

  • To get a rough idea of the next 7 games and points based on the current standings
  • To visualize all team performances based on number of goals scored, conceded and goal difference

Tables

Prem Table

@kaggle.pratmo_premier_league_standings_202122_oct_13_2021.prem_table
  • 10.57 KB
  • 20 rows
  • 10 columns
Loading...

CREATE TABLE prem_table (
  "team" VARCHAR,
  "played" BIGINT,
  "won" BIGINT,
  "drawn" BIGINT,
  "lost" BIGINT,
  "for" BIGINT,
  "against" BIGINT,
  "goal_difference" BIGINT,
  "points" BIGINT,
  "form_last_5_games" VARCHAR
);

Share link

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