Baselight

Top Games On Google Play Store

A dataset of top rated games on Google Play Store with ratings

@kaggle.dhruvildave_top_play_store_games

About this Dataset

Top Games On Google Play Store

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.

Photo by Garrett Morrow from Pexels

Tables

Android Games

@kaggle.dhruvildave_top_play_store_games.android_games
  • 112.78 KB
  • 1730 rows
  • 15 columns
Loading...

CREATE TABLE android_games (
  "rank" BIGINT,
  "title" VARCHAR,
  "total_ratings" BIGINT,
  "installs" VARCHAR,
  "average_rating" BIGINT,
  "growth_30_days" DOUBLE,
  "growth_60_days" DOUBLE,
  "price" DOUBLE,
  "category" VARCHAR,
  "n_5_star_ratings" BIGINT,
  "n_4_star_ratings" BIGINT,
  "n_3_star_ratings" BIGINT,
  "n_2_star_ratings" BIGINT,
  "n_1_star_ratings" BIGINT,
  "paid" BOOLEAN
);