Women's International Football Results
An up-to-date dataset of over 9,000 international football results
@kaggle.martj42_womens_international_football_results
An up-to-date dataset of over 9,000 international football results
@kaggle.martj42_womens_international_football_results
This is a work-in-progress sister data set to the men's international football results dataset. If you're interested in helping out, submit a pull request here.
Currently, the dataset includes 9,652 women's international football results. All major tournament results should be complete. Some international friendlies, particularly tournaments, are included. A LOT of results are not yet in the dataset.
results.csv includes the following columns:
date - date of the matchhome_team - the name of the home teamaway_team - the name of the away teamhome_score - full-time home team score including extra time, not including penalty-shootoutsaway_score - full-time away team score including extra time, not including penalty-shootoutstournament - the name of the tournamentcity - the name of the city/town/administrative unit where the match was playedcountry - the name of the country where the match was playedneutral - TRUE/FALSE column indicating whether the match was played at a neutral venueThe data is gathered from several sources including but not limited to Wikipedia, fifa.com, rsssf.com and individual football associations' websites.
Some directions to take when exploring the data:
The world's your oyster, my friend.
If you notice a mistake or the results are being updated fast enough for your liking, you can fix that by submitting a pull request on github.
✌🏼✌🏼✌🏼
CREATE TABLE goalscorers (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"team" VARCHAR,
"scorer" VARCHAR,
"minute" BIGINT,
"own_goal" BOOLEAN,
"penalty" BOOLEAN
);CREATE TABLE results (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_score" DOUBLE,
"away_score" DOUBLE,
"tournament" VARCHAR,
"city" VARCHAR,
"country" VARCHAR,
"neutral" BOOLEAN
);CREATE TABLE shootouts (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"winner" VARCHAR,
"first_shooter" VARCHAR
);Anyone who has the link will be able to view this.