This is an R HTML document. When you click the Knit HTML button a web page will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
Box plotlibrary(tidyverse)
CO2 %>% ggplot(aes(Treatment, uptake)) + geom_boxplot() + geom_point(alpha = 0.5, aes(size = conc, colour = Plant))
library(tidyverse) CO2 %>% ggplot(aes(Treatment, uptake)) + geom_boxplot() + geom_point(alpha = 0.5, aes(size = conc, colour = Plant)) + facet_wrap(~ Type) + coord_flip() + theme_bw() + labs(title = "Chilled vs. Non-chilled", x = "TREATMENTTTT", y = "UPTAKEEEE")
You can also embed plots, for example: