Knowee
Questions
Features
Study Tools

Randy is attending film school and one of his projects involves researching the ratingsgiven to movies by critics and viewers. He has selected a random sample of movies andhas recorded the average critic score (X1) and the average viewer score (X2) for eachmovie. The scores were obtained from a website that collates movie reviews and ratingssubmitted by critics and viewers. Randy also recorded the genre (X3) of each movie. Thedata are stored in the file AssignmentData.RData in the data frame movies.df.(a) [3 marks] Create a scatter plot of average critic score against average viewer scorefor comedies, with average viewer score along the x-axis. Make sure to give yourplot a proper descriptive title and appropriate labels for the x and y axes. Describethe relationship between these two variables for comedies.(b) [2 marks] Determine whether the average critic scores and the average viewerscores are more highly correlated for comedies or for thrillers. Provide a clearjustification for your answer.(c) [3 marks] For thrillers, test whether the population proportion of movies that havean average viewer score greater than 3.27 is less than 0.5. Clearly state your hypothe-ses, making sure to define any parameters, and use a significance level of α = 3%.Do not use any R functions that are designed to perform hypothesis tests.(d) [4 marks] For dramas, test whether the population mean average viewer score isgreater than the population mean average critic score by more than 0.05. Clearlystate your hypotheses, making sure to define any parameters, and use a significancelevel of α = 3%. Do not use any R functions that are designed to perform hypothesistests

Question

Randy is attending film school and one of his projects involves researching the ratingsgiven to movies by critics and viewers. He has selected a random sample of movies andhas recorded the average critic score (X1) and the average viewer score (X2) for eachmovie. The scores were obtained from a website that collates movie reviews and ratingssubmitted by critics and viewers. Randy also recorded the genre (X3) of each movie. Thedata are stored in the file AssignmentData.RData in the data frame movies.df.(a) [3 marks] Create a scatter plot of average critic score against average viewer scorefor comedies, with average viewer score along the x-axis. Make sure to give yourplot a proper descriptive title and appropriate labels for the x and y axes. Describethe relationship between these two variables for comedies.(b) [2 marks] Determine whether the average critic scores and the average viewerscores are more highly correlated for comedies or for thrillers. Provide a clearjustification for your answer.(c) [3 marks] For thrillers, test whether the population proportion of movies that havean average viewer score greater than 3.27 is less than 0.5. Clearly state your hypothe-ses, making sure to define any parameters, and use a significance level of α = 3%.Do not use any R functions that are designed to perform hypothesis tests.(d) [4 marks] For dramas, test whether the population mean average viewer score isgreater than the population mean average critic score by more than 0.05. Clearlystate your hypotheses, making sure to define any parameters, and use a significancelevel of α = 3%. Do not use any R functions that are designed to perform hypothesistests

...expand
🧐 Not the exact question you are looking for?Go ask a question

Solution

This question seems to be a statistics assignment that requires the use of R programming language to analyze a dataset. Here's how you can approach each part:

(a) To create a scatter plot of average critic score against average viewer score for comedies, you first need to filter the data for comedies. Then, use the plot() function in R to create the scatter plot. The relationship between these two variables can be described by observing the scatter plot - if the points form an upward trend, it indicates a positive relationship; if they form a downward trend, it indicates a negative relationship.

(b) To determine whether the average critic scores and the average viewer scores are more highly correlated for comedies or for thrillers, you can use the cor() function in R to calculate the correlation coefficient for each genre. The genre with the higher absolute value of the correlation coefficient has a stronger correlation.

(c) To test whether the population proportion of movies that have an average viewer score greater than 3.27 is less than 0.5 for thrillers, you can use the prop.test() function in R. The null hypothesis (H0) is that the population proportion is equal to 0.5, and the alternative hypothesis (H1) is that the population proportion is less than 0.5.

(d) To test whether the population mean average viewer score is greater than the population mean average critic score by more than 0.05 for dramas, you can use the t.test() function in R. The null hypothesis (H0) is that the difference between the population means is equal to 0.05, and the alternative hypothesis (H1) is that the difference is greater than 0.05.

Please note that the actual R code to perform these tasks would depend on the exact structure of your data frame.

This problem has been solved

Similar Questions

Sarah, a reviewer for MovieMania Reviews, is updating the database with recent ratings and reviews for the film 'Tenet' directed by Christopher Nolan.Create a program that records and displays the rating and review details for the movie.Input format :The first line of input consists of an integer N, representing the movie rating (1 to 5 stars).The second line consists of a string containing the review text.Output format :The first line of output prints "Recent Review Rating: [N] stars"The second line prints "Review Details: " followed by the review text.Refer to the sample output for formatting specifications.Code constraints :1 ≤ N ≤ 5Sample test cases :Input 1 :4The movie has a complex narrative but is visually stunning.Output 1 :Recent Review Rating: 4 starsReview Details: The movie has a complex narrative but is visually stunning.Input 2 :5An incredible film with mind-blowing sequences and outstanding performances.Output 2 :Recent Review Rating: 5 starsReview Details: An incredible film wit

Directions: The given graph shows how a particular movie was rated by users of an online movie review site. Each user could vote only once. Go through the given graph and answer the questions based on it.

You are managing a database for a movie production company. The database includes information about actors, directors, movies, movie cast, and ratings.Write a query for updating the ratings of all movies directed by 'Lankesh' to a new rating of 3 in a database that contains information about actors, directors, movies, movie casts, and ratings.The following table is already created, and the records are inserted into the table.

Figure 3.1.G shows a stem and leaf plot of the ratings (out of 100 ) of an actor's performance in different movies.Stem Leaf4 1 75 2 3 46 4 4 77 1 3 5 68 79 0Figure 3.1.G: Performance rating of an actor.Here 6 | 4 means Rating of 64What is the median rating, if 3 points are added to all of his ratings and then converted to 10 points. (Correct up to 2 decimal point accuracy.)

Task: Determine the most common genres of movies in the dataset. Then, for each genre, calculate descriptive statistics (mean, median, mode, range, variance, standard deviation) of the IMDB scores.Hint: Use Excel's COUNTIF function to count the number of movies for each genre. You might need to manipulate the 'genres' column to separate multiple genres for a single movie. Use Excel's functions like AVERAGE, MEDIAN, MODE, MAX, MIN, VAR, and STDEV to calculate descriptive statistics. Compare the statistics to understand the impact of genre on movie ratings.

1/1

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.