This is an example R Markdown document. This is part of the activities of the “Reproducible Templates for Analysis and Dissemination” course. The objective is to evaluate the learning obtained during this Coursera’s course.
plot(pressure, xlab = "Temperature (°C)", ylab = "Pressure (mmHg)", main = "Pressure data")
library(knitr)
knitr::kable(head(cars, n = 6), align = 'c', caption = "Cars data")
| speed | dist |
|---|---|
| 4 | 2 |
| 4 | 10 |
| 7 | 4 |
| 7 | 22 |
| 8 | 16 |
| 9 | 10 |