This is a sample report to explain how R Markdown works in the course of R-programming
str(cars)
## 'data.frame': 50 obs. of 2 variables:
## $ speed: num 4 4 7 7 8 9 10 10 10 11 ...
## $ dist : num 2 10 4 22 16 10 18 26 34 17 ...
Scatter Plot
The average of speed
is 15.4
Table
speed | dist |
---|---|
4 | 2 |
4 | 10 |
7 | 4 |