Points Table Of 5 Leagues In Football 2014-2018
Includes the Goals scored,predicted goals,cards,etc.
@kaggle.thegreatcoder_points_table_of_5_leagues_in_football_20142018
Includes the Goals scored,predicted goals,cards,etc.
@kaggle.thegreatcoder_points_table_of_5_leagues_in_football_20142018
The points table is one of the most important features o of a league, it helps us understand the position of each team.
This dataset also contains additional features such as red cards, yellow cards, goals scored, losing rate and drawing rate, etc.
CREATE TABLE football_data (
"league" VARCHAR,
"year" BIGINT,
"position" BIGINT,
"team" VARCHAR,
"matches" BIGINT,
"wins" BIGINT,
"draws" BIGINT,
"loses" BIGINT,
"scored" BIGINT,
"pts" BIGINT,
"xg" DOUBLE,
"xga" DOUBLE,
"n__loser" DOUBLE -- %LoseR,
"n__drawr" DOUBLE -- %DrawR,
"shots" DOUBLE,
"yellow" DOUBLE,
"red" DOUBLE,
"fouls" DOUBLE,
"s_ontarget" DOUBLE
);
Anyone who has the link will be able to view this.