Fandango Movie Ratings
Comparison of Movie Ratings Across Review Platforms
@fivethirtyeight.fandango
Comparison of Movie Ratings Across Review Platforms
@fivethirtyeight.fandango
CREATE TABLE fandango_score_comparison (
"film" VARCHAR,
"rottentomatoes" BIGINT,
"rottentomatoes_user" BIGINT,
"metacritic" BIGINT,
"metacritic_user" DOUBLE,
"imdb" DOUBLE,
"fandango_stars" DOUBLE,
"fandango_ratingvalue" DOUBLE,
"rt_norm" DOUBLE,
"rt_user_norm" DOUBLE,
"metacritic_norm" DOUBLE,
"metacritic_user_nom" DOUBLE,
"imdb_norm" DOUBLE,
"rt_norm_round" DOUBLE,
"rt_user_norm_round" DOUBLE,
"metacritic_norm_round" DOUBLE,
"metacritic_user_norm_round" DOUBLE,
"imdb_norm_round" DOUBLE,
"metacritic_user_vote_count" BIGINT,
"imdb_user_vote_count" BIGINT,
"fandango_votes" BIGINT,
"fandango_difference" DOUBLE
);
CREATE TABLE fandango_scrape (
"film" VARCHAR,
"stars" DOUBLE,
"rating" DOUBLE,
"votes" BIGINT
);
Anyone who has the link will be able to view this.