Esports Earnings 1998 - 2023
A monthly look at money distributed in various Esports tournaments
@kaggle.rankirsh_esports_earnings
A monthly look at money distributed in various Esports tournaments
@kaggle.rankirsh_esports_earnings
Information about cash prizes distributed in various Esport events from 1998 to 2023.
Data comes from EsportEarnings.com
Inspiration came from Rushikesh's original dataset, thank you.
If you want to reproduce the database feel free to check my github.
Feel free to upvote and propose changes :)
CREATE TABLE generalesportdata (
"game" VARCHAR,
"releasedate" BIGINT,
"genre" VARCHAR,
"totalearnings" DOUBLE,
"offlineearnings" DOUBLE,
"percentoffline" DOUBLE,
"totalplayers" BIGINT,
"totaltournaments" BIGINT
);CREATE TABLE historicalesportdata (
"date" TIMESTAMP,
"game" VARCHAR,
"earnings" DOUBLE,
"players" BIGINT,
"tournaments" BIGINT
);Anyone who has the link will be able to view this.