Urgenthomework logo
UrgentHomeWork
Live chat

Loading..

R Language Assignment Question 4

SCHOOL OF ELECTRICAL ENGINEERING AND COMPUTING

BIG DATA AND DATA ANALYTICS LAB PROJECT 5

This lab project is based on a dataset about movie success in 2014 and 2015 by Ahmad et al. (2015) which is available on the online platform by Lichman et al (2013). The dataset file movidata.csv can be downloaded from Blackboard.

Important: Before you start with the exercises, run the following code to remove all observations from the dataset where budget, screens, or aggregate followers have NA values and create a few more variables.

moviedata <- subset(moviedata, !is.na(budget) & !is.na(screens)
& !is.na(aggregate_followers))
moviedata$profit <- moviedata$gross - moviedata$budget
moviedata$netlikes = moviedata$likes - moviedata$dislikes

EXERCISE 1 (2 MARKS)

[R-CODE]

Use R to create a variable called “posrating” in the dataframe. The variable takes on the value 1 if ratings >= 6.8. For ratings < 6.8 it takes on the value 0. Use R to perform a logistic regression that regresses the newly created variable “posrating” on aggregate_followers, dummy_sequel, netlikes, and sentiment in order to predict the probability that a movie has a positive rating. Interpret the coefficients and report the results of the logistic regression in APA style (including a logistic regression table and reporting of AIC-values).

EXERCISE 2 (1 MARK)

[R-CODE]

Use R to create a confusion matrix. Report the confusion matrix. Calculate and interpret sensitivity, specificity, and accuracy.

EXERCISE 3 (2 MARKS)

[R-CODE]

Use R to create two logistic regression models. In the first model, regress posrating on sentiment. In the second model, regress posrating on budget, dummy_sequel, and sentiment. Plot an “Area under the ROC Curve” plot for each of the two models and explain the plots. Use the AUC values to compare the two models and interpret the results.

EXERCISE 4 (2 MARKS)

Use the winsor function discussed in Week 3 to create a variable “sentiment_winsor” with a multiplier of 2.2. Use R to create a regression tree that uses budget and sentiment to predict ratings. Then, create a scatterplot of budget and sentiment, and add the partitions of the regression tree. Interpret at least 2 partions of the partitioned scatterplot.

EXERCISE 5 (1 MARK)

[R-CODE]

Based on the regression tree created in Exercise 4, use cross-validation to determine the optimal tree size and prune the tree. Plot and interpret the tree.

EXERCISE 6 (2 MARKS)

[R-CODE]

Use R to create a classification tree to predict posrating. As predictors, take into account the variables aggregate_followers, comments, likes, dislikes, and sentiment. Use cross-validation to determine the optimal tree size and prune the tree. Plot and interpret the tree.

REFERENCES

Ahmed M, Jahangir M, Afzal H, Majeed A, Siddiqi I. Using Crowd-source based features from social media and Conventional features to predict the movies popularity. In Smart City/ SocialCom/S ustainCom (SmartCity), 2015 IEEE International Conference on 2015 Dec 19 (pp. 273-278). IEEE. https://ieeexplore.ieee.org/document/7463737

Lichman, M. (2013). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science.

[R-CODE]

DATASET

moviedata Conventional and Social Media Movies 2014 and 2015 Description

A dataset about the success of movies in 2014 and 2015.

Usage

moviedata

Format

A data frame with 231 observations on the following 14 variables.

movie
year
ratings
genre
gross
budget
screens

sequel

dummy_sequel
sentiment
views
likes
dislikes
comments
aggregate_followers

Source

Name of the movie

Year of movie release

Rating of the movie (0 – 10)

Identifier for the genre of the movie (e.g., action, adventure, drama) Gross world-wide income from the movie (in US$)

Budget for the movie

Number of screens that the movie was initially launched in on the opening weekend in the US

A number indicating whether the movie is sequel or original (individual) movie, where higher numbers indicate later sequels in a series. For instance, for Mission Impossible a sequel value of 5 indicates that this is the fifth movie in the series.

0 – Original movie

1 – Sequel movie

A sentiment score assessed through an analysis of tweets about the movie on Twitter. 0 represents a neutral sentiment, a positive value represents a positive sentiment, and a negative value indicates a negative sentiment. The sentiment score for each movie was calculated by retrieving all tweets related to each movie, assigning the sentiment score to each of them and then aggregating the score. Number of times the movie trailer was viewed on YouTube Number of likes the movie trailer received on YouTube

Number of dislikes the movie trailer received on YouTube

Number of times the movie trailer received a comment on YouTube The aggregate number of actor followers: Equal to sum of followers of top 3 cast from Twitter

Copyright © 2009-2023 UrgentHomework.com, All right reserved.