Code
data("movie_review")
# your R code to load the data here
This is a quarto file. If you open its source in RStudio, you will get all the features of this interactive notebook-style document. If you want to know more about how to use this file to generate a .html document to hand in, look at the getting started guide.
(Delete this callout box before handing in your assignment.)
data("movie_review")
# your R code to load the data here
Describe the data and use a visualization to support your story. (approx. one or two paragraphs)
# your R code to generate the plot here
%$% wordcloud(review,
movie_review min.freq = 10,
max.words = 50,
random.order = FALSE,
colors = brewer.pal(8, "Dark2"))
Describe text pre-processing steps you have used (approx. one or two paragraphs)
Briefly describe your text representation method. (approx. one or two paragraphs)
Briefly describe which models you compare to perform clustering. (approx. two or three paragraphs)
Describe how you compare the methods and why. (approx. two or three paragraphs)
data.frame(
model = c("clustering model 1", "clustering model 2"),
performance = c(1.2, 1.8),
other = c(0.5, 0.3),
notes = c("Some note", "another note")
)
model | performance | other | notes |
---|---|---|---|
clustering model 1 | 1.2 | 0.5 | Some note |
clustering model 2 | 1.8 | 0.3 | another note |
Write down what each team member contributed to the project.