This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course.
rooms <- c("Living Room", "dining room", "kitchen")
colors <- c("Navaho White", "Stonington Gray", "Edgecomb Gray")
comments <- c("Patch ceiling hole - Bob", "Use a tinted primer - Joe",
"Look's pretty good - Ann")
price <- c(245.30, 300, 180.25)
house <- data.frame(rooms, colors, comments, price)
mean(house$price)
## [1] 241.85
This assignment was easy!