An r-code implementation for analysing reviews of movies and providing an analysis for the same.
This project performs sentiment analysis on a sample dataset of movie reviews using R. It utilizes the tidyverse, tidytext, and textdata packages to preprocess text data, perform sentiment analysis, and visualize the results.
The project includes:
- Tokenization and cleaning of text data
- Sentiment analysis using the Bing lexicon
- Visualization of sentiment scores for individual words
Before running the code, ensure you have the following packages installed:
install.packages("tidyverse")
install.packages("tidytext")
install.packages("textdata")