Apex Legends
Historical data for Apex Legends E-Sports
@kaggle.astopher_apex_legends
Historical data for Apex Legends E-Sports
@kaggle.astopher_apex_legends
Historical Apex Legends E-Sports data
For my advanced stats class I wanted to do XGBoost with Apex Legends data but a League of Legends dataset was already available. Now I am working to make a reasonable dataset for research on Apex Legends E-Sports data
CREATE TABLE player_info (
"player_name" VARCHAR,
"real_name" VARCHAR,
"nationality" VARCHAR,
"team" VARCHAR,
"player_status" VARCHAR,
"links" VARCHAR
);
CREATE TABLE winnings_by_org_allyears (
"earnings_rank" BIGINT,
"team" VARCHAR,
"earnings" BIGINT,
"year" BIGINT
);
CREATE TABLE winnings_by_player_allyears (
"earnings_rank" BIGINT,
"nationality" VARCHAR,
"real_name" VARCHAR,
"player_name" VARCHAR,
"earnings" BIGINT,
"year" BIGINT
);
Anyone who has the link will be able to view this.