This is an R-HTML document & can be embeded an R code chunk like this:
This is the long method:library(tidyverse)
ggplot(data = BOD, mapping = aes(x = Time, y = demand)) + geom_point(size = 5) + geom_line(color = "red")
library(tidyverse) ggplot(BOD, aes(Time, demand)) + geom_point(size = 3) + geom_line(color = "blue")
library(tidyverse) BOD %>% ggplot(aes(Time, demand)) + geom_point(size = 5, color = "red") + geom_line(color = "blue")