FIFA World Cup
Dataset of every match played in FIFA World Cup history from 1930 to 2018
@kaggle.evangower_fifa_world_cup
Dataset of every match played in FIFA World Cup history from 1930 to 2018
@kaggle.evangower_fifa_world_cup
As we count down to the start of the FIFA World Cup in Qatar on November 20, this new dataset covers every single World Cup match played in its history from Uruguay in 1930 to Russia in 2018.
The wcmatches dataset contains every football match played in the World Cup. Columns inside the dataset include city from which city was the match being played in, outcome which team claimed victory or did the match result in a draw, win_condition showing if the winning side need added extra time of penalties to win the game.
It also includes a summary of each World Cup held, the cups dataset contains columns winners, games, goals_scored, and more.
Analysis ideas
CREATE TABLE wcmatches (
"year" BIGINT,
"country" VARCHAR,
"city" VARCHAR,
"stage" VARCHAR,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_score" BIGINT,
"away_score" BIGINT,
"outcome" VARCHAR,
"win_conditions" VARCHAR,
"winning_team" VARCHAR,
"losing_team" VARCHAR,
"date" TIMESTAMP,
"month" VARCHAR,
"dayofweek" VARCHAR
);CREATE TABLE worldcups (
"year" BIGINT,
"host" VARCHAR,
"winner" VARCHAR,
"second" VARCHAR,
"third" VARCHAR,
"fourth" VARCHAR,
"goals_scored" BIGINT,
"teams" BIGINT,
"games" BIGINT,
"attendance" BIGINT
);Anyone who has the link will be able to view this.