FIFA Women's World Cup Stats
FIFA Women's World Cup Stats (1991 - 2019)
@kaggle.mattop_fifa_womens_world_cup_stats
FIFA Women's World Cup Stats (1991 - 2019)
@kaggle.mattop_fifa_womens_world_cup_stats
The dataset contains FIFA Women’s World Cup Stats from 1991 to 2019.
The data was collected from Sports Reference then cleaned for data analysis.
Tabular data includes:
squadyearplayersagepossessionmatches_playedstartsmin_playing_timeminutes_played_90sgoalsassistsnon_penalty_goalspenalty_kicks_madepenalty_kicks_attemptedyellow_cardsred_cardsgoals_per_90: Runs allowedassists_per_90goals_plus_assists_per_90goals_minus_penalty_kicks_per_90goals_plus_assists_minus_penalty_kicks_per_90CREATE TABLE womens_world_cup (
"id" BIGINT,
"squad" VARCHAR,
"year" BIGINT,
"players" BIGINT,
"age" DOUBLE,
"possesion" DOUBLE,
"matches_played" BIGINT,
"starts" BIGINT,
"min_playing_time" BIGINT,
"minutes_played_90s" DOUBLE,
"goals" BIGINT,
"assists" BIGINT,
"non_penalty_goals" BIGINT,
"penalty_kicks_made" BIGINT,
"penalty_kicks_attempted" BIGINT,
"yellow_cards" DOUBLE,
"red_cards" DOUBLE,
"goals_per_90" DOUBLE,
"assists_per_90" DOUBLE,
"goals_plus_assists_per_90" DOUBLE,
"goals_minus_penalty_kicks_per_90" DOUBLE,
"goals_plus_assists_minus_penalty_kicks_per_90" DOUBLE
);Anyone who has the link will be able to view this.