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:
Single variablelibrary(tidyverse)
msleep %>% ggplot(aes(awake)) + geom_histogram(binwidth = 2, fill = '#97B3C6') + #how many observations fit into the bin? theme_bw() + labs(x = "Haba ng Tulog", y = NULL, title = "Histogram of Total Sleep")
You can also embed plots, for example: