Game Recommendations On Steam
A dataset of games, users and reviews for building recommendation systems
@kaggle.antonkozyriev_game_recommendations_on_steam
A dataset of games, users and reviews for building recommendation systems
@kaggle.antonkozyriev_game_recommendations_on_steam
The dataset contains over 41 million cleaned and preprocessed user recommendations (reviews) from a Steam Store - a leading online platform for purchasing and downloading video games, DLC, and other gaming-related content. Additionally, it contains detailed information about games and add-ons.
The dataset consists of three main entities:
The dataset does not contain any personal information about users on a Steam Platform. A preprocessing pipeline anonymized all user IDs. All collected data is accessible to a member of the general public.
The dataset was collected from Steam Official Store. All rights on the dataset thumbnail image belong to the Valve Corporation.
Use this dataset to practice building a game recommendation system or performing an Exploratory Data Analysis on products from a Steam Store.
CREATE TABLE games (
"app_id" BIGINT,
"title" VARCHAR,
"date_release" TIMESTAMP,
"win" BOOLEAN,
"mac" BOOLEAN,
"linux" BOOLEAN,
"rating" VARCHAR,
"positive_ratio" BIGINT,
"user_reviews" BIGINT,
"price_final" DOUBLE,
"price_original" DOUBLE,
"discount" DOUBLE,
"steam_deck" BOOLEAN
);CREATE TABLE recommendations (
"app_id" BIGINT,
"helpful" BIGINT,
"funny" BIGINT,
"date" TIMESTAMP,
"is_recommended" BOOLEAN,
"hours" DOUBLE,
"user_id" BIGINT,
"review_id" BIGINT
);CREATE TABLE users (
"user_id" BIGINT,
"products" BIGINT,
"reviews" BIGINT
);Anyone who has the link will be able to view this.