Rotten Tomatoes Top Movies Ratings And Technical
Film Critic and User Reviews
@kaggle.thedevastator_rotten_tomatoes_top_movies_ratings_and_technical
Film Critic and User Reviews
@kaggle.thedevastator_rotten_tomatoes_top_movies_ratings_and_technical
By [source]
This dataset captures the success remarkable movies that have been rated highly by both critics and viewers alike. Here, you'll find a comprehensive collection of technical data on each film, covering everything from box office figures, production crews and credits, airing dates and lengths of time for each film. However, the best part of it all are the ratings given out by both critics and viewers; these ratings will definitely help you pick out your favorite movie from this remarkable pool of films! With this dataset we hope to give people insight into how top-rated movies fared in terms of viewing numbers, user scores and critical reviews - so what better way to find your next all-time favorite movie than here?
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
This dataset includes technical data and ratings for 900+ top-rated movies according to critics and users of Rotten Tomatoes. It is an excellent resource for anyone interested in researching some of the highest rated films, as well as exploring various topics such as film trends, filmmaking techniques, and more.
- Creating a movie recommendation app using the critic and user reviews. The app will use the ratings from this dataset to recommend similar movies that are highly rated by users and critics.
- Analyzing trends in top-rated movies over time by examining year of release, total number of reviews, total ratings, and box office gross from this dataset.
- Performing sentiment analysis on critical reviews to detect the top-rated films with positive or negative review sentiment for each movie genre listed in this dataset
If you use this dataset in your research, please credit the original authors.
Data Source
License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: rotten_tomatoes_top_movies.csv
| Column name | Description |
|---|---|
| title | The title of the movie. (String) |
| year | The year the movie was released. (Integer) |
| synopsis | A brief summary of the movie. (String) |
| critic_score | The score given to the movie by critics. (Integer) |
| people_score | The score given to the movie by viewers. (Integer) |
| consensus | A summary of the reviews for the movie. (String) |
| total_reviews | The total number of reviews for the movie. (Integer) |
| total_ratings | The total number of ratings for the movie. (Integer) |
| type | The type of movie (e.g. feature film, documentary, etc.). (String) |
| genre | The genre of the movie (e.g. action, comedy, etc.). (String) |
| original_language | The original language of the movie. (String) |
| director | The director of the movie. (String) |
| producer | The producer of the movie. (String) |
| writer | The writer of the movie. (String) |
| release_date_(theaters) | The date the movie was released in theaters. (Date) |
| release_date_(streaming) | The date the movie was released for streaming. (Date) |
| box_office_(gross_usa) | The total box office gross in the USA. (Integer) |
| runtime | The length of the movie in minutes. (Integer) |
| production_co | The production company of the movie. (String) |
| sound_mix | The sound mix used for the movie. (String) |
| aspect_ratio | The aspect ratio of the movie. (String) |
| view_the_collection | A link to the collection the movie is part of. (URL) |
| crew | The crew members involved in the movie. (String) |
If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit .
CREATE TABLE rotten_tomatoes_top_movies (
"unnamed_0" BIGINT -- Unnamed: 0,
"title" VARCHAR,
"year" BIGINT,
"synopsis" VARCHAR,
"critic_score" BIGINT,
"people_score" DOUBLE,
"consensus" VARCHAR,
"total_reviews" BIGINT,
"total_ratings" VARCHAR,
"type" VARCHAR,
"rating" VARCHAR,
"genre" VARCHAR,
"original_language" VARCHAR,
"director" VARCHAR,
"producer" VARCHAR,
"writer" VARCHAR,
"release_date_theaters" VARCHAR -- Release Date (theaters),
"release_date_streaming" TIMESTAMP -- Release Date (streaming),
"box_office_gross_usa" VARCHAR -- Box Office (gross Usa),
"runtime" VARCHAR,
"production_co" VARCHAR,
"sound_mix" VARCHAR,
"aspect_ratio" VARCHAR,
"view_the_collection" VARCHAR,
"crew" VARCHAR,
"link" VARCHAR
);Anyone who has the link will be able to view this.