Quack Club - Ratings
Videogame Ratings from the Quack Clube Podcast
@kaggle.marcelopesse_quack_club_score
Videogame Ratings from the Quack Clube Podcast
@kaggle.marcelopesse_quack_club_score
I wanted to train my storytelling and plot abilities, but wanted to do it with a small dataset and something closer to home.
Since some friends of mine do a podcast/youtube chanel about PC and since they have been doing since 2016 and have more than 200 episodes, they were a perfect fit.
They had they own ratings for all the games reviewed, with every host given a different rating.
The data was acquired with the help from the guys of the podcast (Arara, Madz, Rune, Storm and Cosmos)
And also with a alternative API for Metacritic, called Chicken Coop
CREATE TABLE quack_club_score (
"ep" BIGINT,
"title" VARCHAR,
"pick" VARCHAR,
"mc" DOUBLE,
"arara" DOUBLE,
"madz" DOUBLE,
"storm" DOUBLE,
"cosmos" DOUBLE,
"rune" DOUBLE,
"partner" DOUBLE,
"partner_2" DOUBLE,
"quack_mean" DOUBLE,
"date" TIMESTAMP,
"release_date" TIMESTAMP,
"delta_date" DOUBLE,
"genre" VARCHAR,
"developer" VARCHAR,
"publisher" VARCHAR,
"rating" VARCHAR,
"also_available" VARCHAR,
"error" BIGINT
);
Anyone who has the link will be able to view this.