Code
# your R code to generate the plot here
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme_minimal()
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.)
Describe the data and use a visualization to support your story. (approx. one or two paragraphs)
# your R code to generate the plot here
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme_minimal()
Briefly describe which models you compare to perform prediction. (approx. two or three paragraphs)
Describe additional pre-processing steps you have used, if any (e.g., dealing with categorical data, scaling). If you do not do any pre-processing, you can leave this section out.
Describe how you compare the methods and why. (approx. two or three paragraphs)
Show which method is best and why. (approx. one paragraph) You are welcome to use tables and plots!
data.frame(
model = c("Cool model 1", "Cool model 2"),
performance = c(1.2, 1.8),
other = c(0.5, 0.3),
notes = c("Some note", "another note")
)
model | performance | other | notes |
---|---|---|---|
Cool model 1 | 1.2 | 0.5 | Some note |
Cool model 2 | 1.8 | 0.3 | another note |
Write down what each team member contributed to the project.