Top Games On Google Play Store
A dataset of top rated games on Google Play Store with ratings
@kaggle.dhruvildave_top_play_store_games
A dataset of top rated games on Google Play Store with ratings
@kaggle.dhruvildave_top_play_store_games
This is a dataset of top 100 games of each category of games on Google Play Store along with their ratings and other data like price and number of installs.
Data as of Jun 9, 2021.
CREATE TABLE android_games (
"rank" BIGINT,
"title" VARCHAR,
"total_ratings" BIGINT,
"installs" VARCHAR,
"average_rating" BIGINT,
"growth_30_days" DOUBLE -- Growth (30 Days),
"growth_60_days" DOUBLE -- Growth (60 Days),
"price" DOUBLE,
"category" VARCHAR,
"n_5_star_ratings" BIGINT -- 5 Star Ratings,
"n_4_star_ratings" BIGINT -- 4 Star Ratings,
"n_3_star_ratings" BIGINT -- 3 Star Ratings,
"n_2_star_ratings" BIGINT -- 2 Star Ratings,
"n_1_star_ratings" BIGINT -- 1 Star Ratings,
"paid" BOOLEAN
);Anyone who has the link will be able to view this.