Hollywood Most Profitable Stories
74 movies released 2007-2012
@kaggle.brendan45774_hollywood_most_profitable_stories
74 movies released 2007-2012
@kaggle.brendan45774_hollywood_most_profitable_stories
Movies are one of the biggest industry in the world. In this dataset there are over 74 movies with the span from 2007 and 2012. People can take this data and see what genre or what year movies make the most.
There is title, genre, studio, different profitability, ratings, and year for movies released 2007-2012.
Thanks to information is beautiful.net for providing with the dataset.
Thanks to Chris Murray on Unsplash for the banner photo.
CREATE TABLE hollywoodsmostprofitablestories (
"film" VARCHAR,
"genre" VARCHAR,
"lead_studio" VARCHAR,
"audience_score" DOUBLE -- Audience Score %,
"profitability" DOUBLE,
"rotten_tomatoes" DOUBLE -- Rotten Tomatoes %,
"worldwide_gross" DOUBLE,
"year" BIGINT
);Anyone who has the link will be able to view this.