Rotten Tomatoes Movie Database
Information of all the movies on Rotten Tomatoes
@kaggle.ayushkalla1_rotten_tomatoes_movie_database
Information of all the movies on Rotten Tomatoes
@kaggle.ayushkalla1_rotten_tomatoes_movie_database
This dataset was developed as a part of my college project 'Movie Genre Prediction' that involved implementation of Machine Learning Algorithms for Genre Prediction.
The dataset has 21 rows ranging from movie description to movie Genre.
The movie ratings are not included in the dataset.
The data was scraped from rottentomatoes.com and was made possible because of that.
CREATE TABLE all_movie (
"cast_1" VARCHAR,
"cast_2" VARCHAR,
"cast_3" VARCHAR,
"cast_4" VARCHAR,
"cast_5" VARCHAR,
"cast_6" VARCHAR,
"description" VARCHAR,
"director_1" VARCHAR,
"director_2" VARCHAR,
"director_3" VARCHAR,
"genre" VARCHAR,
"rating" VARCHAR,
"release_date" VARCHAR,
"runtime" VARCHAR,
"studio" VARCHAR,
"title" VARCHAR,
"writer_1" VARCHAR,
"writer_2" VARCHAR,
"writer_3" VARCHAR,
"writer_4" VARCHAR,
"year" BIGINT
);Anyone who has the link will be able to view this.