Experimenting with R Studio Markdown

library(dplyr)

I am going to do a simple chunk

x = 2 + 2
x
## [1] 4

without R input

## [1] 4
plot(cars$speed, cars$dist)

Cars