This is a test RMarkdown to help learn the basics of the tools for producing reports or summaries combining code, results and commentary
Note that this markdown document is in beta
cars <- cars %>% filter(speed<20)
plot(cars)
speed <- cars$speed
plot(speed)
3. Repeat for the distance variable from the cars dataset
dist <- cars$dist
plot(dist)