Ranked Users Kaggle Data
Data from Kaggle Ranking
@kaggle.felsal_ranked_users_kaggle_data
Data from Kaggle Ranking
@kaggle.felsal_ranked_users_kaggle_data
Data about Kaggle ranked users
This data is available online here. I image it was obtained by a crawler since it is displayed on the Kaggle leader board. I took the data and standardize the country names and add a continent label to each user, but I did not use the city name. To preserve anonymity I removed the columns UserName and DisplayName from the original dataset.
Each row represent a ranked user. The columns are: register date, current points, current ranking, highest ranking, country and continent.
In Kaggle, points and ranking change over time. So, all the positions represented here correspond only to a specific point in time (around August 2018).
I want to thank the team from Norconsult responsible to make this data public.
CREATE TABLE ranked_users_kaggle (
"registerdate" TIMESTAMP,
"points" BIGINT,
"currentranking" BIGINT,
"highestranking" BIGINT,
"country" VARCHAR,
"continent" VARCHAR
);Anyone who has the link will be able to view this.