Rmarkdown and Coffee

Overview

This document is my practice assignment for module 5 of the Reproducible Templates for Analysis and Dissemination Coursera course. I’m hoping that I’ll be able to do a lot of this assignment without having to look up everything again, but knowing how to look things up is an important skill. So is practice.

Sections

  • Plot of the pressure dataset
  • Peek at the cars dataset
  • Conclusion

Pressure Plot

plot(pressure)

Cars Table

knitr::kable(head(cars),
             caption = "First 6 rows of the `Cars` dataset")
First 6 rows of the Cars dataset
speed dist
4 2
4 10
7 4
7 22
8 16
9 10

Conclusion

I have learned a lot from this course. I will definitely forget a lot of it, but I have the code and the resources to relearn what I need.