Fortnite Players Stats
lifetime stats of 1400+ fortnite pc players
@kaggle.iyadali_fortnite_players_stats
lifetime stats of 1400+ fortnite pc players
@kaggle.iyadali_fortnite_players_stats
I'm a Junior Data Engineer and a Fortnite player, I wanted to make a fun project about fortnite, but I didn't find any dataset on kaggle, so I told my self why don't I make one.
In this dataset there is 5 game modes (Solo, Duo, Trios. Squads and ltm) each have:
Score: total score.
top1: total wins.
kd : kill/death ratio.
WinRatio: win ratio.
matches: number of matches played.
kills: number of eliminations made.
minutesPlayed: total number of minutes spent.
Data was collected during season 6 chapter 2 (4/2021)
I collected the data using the fortnite tracker API from the tracker network website (https://tracker.gg/).
CREATE TABLE fortnite_players_stats (
"player" VARCHAR,
"solo_score" BIGINT,
"solo_top1" BIGINT,
"solo_kd" DOUBLE,
"solo_winratio" DOUBLE,
"solo_matches" BIGINT,
"solo_kills" BIGINT,
"solo_minutesplayed" BIGINT,
"duos_score" BIGINT,
"duos_top1" BIGINT,
"duos_kd" DOUBLE,
"duos_winratio" DOUBLE,
"duos_matches" BIGINT,
"duos_kills" BIGINT,
"duos_minutesplayed" BIGINT,
"trios_score" DOUBLE,
"trios_top1" DOUBLE,
"trios_kd" DOUBLE,
"trios_winratio" DOUBLE,
"trios_matches" DOUBLE,
"trios_kills" DOUBLE,
"trios_minutesplayed" DOUBLE,
"squads_score" DOUBLE,
"squads_top1" DOUBLE,
"squads_kd" DOUBLE,
"squads_winratio" DOUBLE,
"squads_matches" DOUBLE,
"squads_kills" DOUBLE,
"squads_minutesplayed" DOUBLE,
"ltm_score" DOUBLE,
"ltm_top1" DOUBLE,
"ltm_top3" DOUBLE,
"ltm_kd" DOUBLE,
"ltm_winratio" DOUBLE,
"ltm_matches" DOUBLE,
"ltm_kills" DOUBLE,
"ltm_minutesplayed" DOUBLE
);Anyone who has the link will be able to view this.