Board Games Dataset Complete Features
Marketplace section truncated except Amazon price. All Versions Accessible.
@kaggle.chik0di_board_games_dataset_complete_features
Marketplace section truncated except Amazon price. All Versions Accessible.
@kaggle.chik0di_board_games_dataset_complete_features
This dataset contains comprehensive information about board games scraped from BoardGameGeek (BGG), the world's largest board game database and community. It includes game specifications, user ratings, popularity metrics, designer credits, and real-time marketplace pricing for games available on Amazon.
Game Details: Names, publication years, player counts, play times, age recommendations
Quality Metrics: Average ratings, complexity scores, user review counts
Popularity Data: Ownership statistics, wishlist counts, play frequencies
Community Rankings: Overall and category-specific rankings
Designer Credits: Game designers, artists, publishers, and other contributors
Rating Distributions: Breakdown of user ratings from 1-10
Amazon Pricing: Current prices for games available on Amazon
Game Classifications: Categories, mechanics, and game families
CREATE TABLE boardgame_geek_dataset_organized (
"row_id" BIGINT,
"boardgame" VARCHAR,
"release_year" BIGINT,
"min_players" BIGINT,
"max_players" BIGINT,
"min_playtime" BIGINT,
"max_playtime" BIGINT,
"minimum_age" BIGINT,
"avg_rating" DOUBLE,
"num_ratings" BIGINT,
"complexity" DOUBLE,
"rank_overall" BIGINT,
"owned" BIGINT,
"wishlisted" BIGINT,
"total_plays" BIGINT,
"fans" BIGINT,
"page_views" BIGINT,
"amazon_price" DOUBLE,
"std_deviation" DOUBLE,
"comments" BIGINT,
"monthly_plays" BIGINT,
"previously_owned" BIGINT,
"for_trade" BIGINT,
"want_trade" BIGINT,
"rating_1" BIGINT,
"rating_2" BIGINT,
"rating_3" BIGINT,
"rating_4" BIGINT,
"rating_5" BIGINT,
"rating_6" BIGINT,
"rating_7" BIGINT,
"rating_8" BIGINT,
"rating_9" BIGINT,
"rating_10" BIGINT,
"categories" VARCHAR,
"mechanics" VARCHAR,
"families" VARCHAR,
"designers" VARCHAR,
"artists" VARCHAR,
"publishers" VARCHAR,
"solo_designers" VARCHAR,
"developers" VARCHAR,
"graphic_designers" VARCHAR,
"sculptors" VARCHAR,
"editors" VARCHAR,
"writers" VARCHAR,
"insert_designers" VARCHAR,
"rank_strategy" DOUBLE,
"rank_thematic" DOUBLE,
"rank_family" DOUBLE,
"rank_war" DOUBLE,
"rank_customizable" DOUBLE,
"rank_abstract" DOUBLE,
"rank_party" DOUBLE,
"rank_childrens" DOUBLE,
"url" VARCHAR,
"description" VARCHAR
);
Anyone who has the link will be able to view this.