Some important text describing what this data is about. Since this line begins with a “#'” it will be rendered as text. See how nice it looks!
# This is a comment. Since it only begins with a "#" it will be rendered as a comment.
# a<-1:25
b<-sort(rnorm(25)) # by default mean=0 and sd=1
mean(b)
## [1] 0.08330981
sd(b)
## [1] 1.189413
Note mean and sd match the default values of sd=1 and mean=0
plot(a,b,type="l",col="red",lwd=2)
## Error in plot(a, b, type = "l", col = "red", lwd = 2): object 'a' not found
Figures are included - no need to cut and paste!