ESports Earnings
Money earned by Players & Teams from eSports Tournaments
@kaggle.jackdaoud_esports_earnings_for_players_teams_by_game
Money earned by Players & Teams from eSports Tournaments
@kaggle.jackdaoud_esports_earnings_for_players_teams_by_game
This is scraped data from eSportsEarning.com that provides information on earnings 💰 of eSports players and teams.
Three CSV files:
highest_earning_players.csvhighest_earning_teams.csvcountry-and-continent-codes-list.csvThe data from CSV files (1) & (2) includes these games:
This dataset was inspired from Ran Kirshenboim's original data set - Esports Earnings 1998 - 2020. Thank you Ran, I used your data set (along with other data) to produce this Tableau story on eSports.
Please see the Exploratory Data Analysis task for inspiration on how to use this data set.
CREATE TABLE country_and_continent_codes_list (
"continent_name" VARCHAR,
"continent_code" VARCHAR,
"country_name" VARCHAR,
"two_letter_country_code" VARCHAR,
"three_letter_country_code" VARCHAR,
"country_number" DOUBLE
);CREATE TABLE highest_earning_players (
"playerid" BIGINT,
"namefirst" VARCHAR,
"namelast" VARCHAR,
"currenthandle" VARCHAR,
"countrycode" VARCHAR,
"totalusdprize" DOUBLE,
"game" VARCHAR,
"genre" VARCHAR
);CREATE TABLE highest_earning_teams (
"teamid" BIGINT,
"teamname" VARCHAR,
"totalusdprize" DOUBLE,
"totaltournaments" BIGINT,
"game" VARCHAR,
"genre" VARCHAR
);Anyone who has the link will be able to view this.