R Markdown

I am Michael Robinson

This code is Show how to create a numeric vector that contains the sequence from 20 to 50 by 5

x <-c (20, 25, 30, 35, 40, 45, 50)
x
## [1] 20 25 30 35 40 45 50

Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.