Marvel Superhero Movies
Graded by box office performance, rotten tomatoes score, and % budget recovered.
@kaggle.joebeachcapital_marvel_movies
Graded by box office performance, rotten tomatoes score, and % budget recovered.
@kaggle.joebeachcapital_marvel_movies
With a new Ant Man film just released, another Guardians of the Galaxy movie looming and other MCU phase 5 slugfests coming down the Disney pipeline, can you answer this question:
What is the best performing Marvel Movie?
It all depends on how you measure performance, of course.
Some interesting metrics & combos:
% budget recovered – a blockbuster movie typically needs to recoup 250% of its budget to cover worldwide marketing costs. So this metric let you quickly see which MCU movies have been commercial flops.
1st vs 2nd weekend drop off – high % declines between weekends is suggestive of audiences not particularly liking a movie, not recommending it to friends etc. Use this to see which movies came in ‘below average’
% budget recovered vs % critics score – any correlation between critical appreciation and box office success?
audience vs critics % deviance – shows which films were more (or less) favoured by audiences vs. critics.
CREATE TABLE what_is_the_best_performing_marvel_movie_public_marvel_movies (
"film" VARCHAR,
"category" VARCHAR,
"worldwide_gross_m" BIGINT -- Worldwide Gross ($m),
"n__budget_recovered" VARCHAR -- % Budget Recovered,
"critics_score" VARCHAR -- Critics % Score,
"audience_score" VARCHAR -- Audience % Score,
"audience_vs_critics_deviance" VARCHAR -- Audience Vs Critics % Deviance,
"budget" DOUBLE,
"domestic_gross_m" BIGINT -- Domestic Gross ($m),
"international_gross_m" BIGINT -- International Gross ($m),
"opening_weekend_m" DOUBLE -- Opening Weekend ($m),
"second_weekend_m" DOUBLE -- Second Weekend ($m),
"n_1st_vs_2nd_weekend_drop_off" VARCHAR -- 1st Vs 2nd Weekend Drop Off,
"n__gross_from_opening_weekend" DOUBLE -- % Gross From Opening Weekend,
"n__gross_from_domestic" VARCHAR -- % Gross From Domestic,
"n__gross_from_international" VARCHAR -- % Gross From International,
"n__budget_opening_weekend" VARCHAR -- % Budget Opening Weekend,
"year" BIGINT,
"source" VARCHAR
);Anyone who has the link will be able to view this.