FIFA World Cup 2022 Catar
The FIFA World Cup 2022 Catar results in the same dataset.
@kaggle.mcarujo_fifa_world_cup_2022_catar
The FIFA World Cup 2022 Catar results in the same dataset.
@kaggle.mcarujo_fifa_world_cup_2022_catar
The inspiration for creating this dataset is to analyze the performance of teams during the competition and relate them to the bet on other platforms around the world.
All data were taken from One Football platform.
The images were taken from Wikipedia.
CREATE TABLE events_world_cup_2022_catar (
"event_id" BIGINT,
"match_id" BIGINT,
"team" VARCHAR,
"event_team" VARCHAR,
"event_time" DOUBLE,
"event_type" VARCHAR,
"action_player_1" VARCHAR,
"action_player_2" VARCHAR
);CREATE TABLE matches_world_cup_2022_catar (
"match_id" BIGINT,
"stage" VARCHAR,
"date" TIMESTAMP,
"pens" BOOLEAN,
"pens_home_score" VARCHAR,
"pens_away_score" VARCHAR,
"team_name_home" VARCHAR,
"team_name_away" VARCHAR,
"team_home_score" BIGINT,
"team_away_score" BIGINT,
"possession_home" DOUBLE,
"possession_away" DOUBLE,
"total_shots_home" BIGINT,
"total_shots_away" BIGINT,
"shots_on_target_home" BIGINT,
"shots_on_target_away" BIGINT,
"duels_won_home" DOUBLE,
"duels_won_away" DOUBLE,
"prediction_team_home_win" DOUBLE,
"prediction_draw" DOUBLE,
"prediction_team_away_win" DOUBLE,
"prediction_quantity" BIGINT,
"location" VARCHAR,
"events_list" VARCHAR,
"lineup_home" VARCHAR,
"lineup_away" VARCHAR,
"player_names_home" VARCHAR,
"player_numbers_home" VARCHAR,
"player_names_away" VARCHAR,
"player_numbers_away" VARCHAR
);Anyone who has the link will be able to view this.