A simple Rmarkdown file

Section 1

Exploring mardown formatting options.

A sub-section

My first code chunk

x <- c("Hello", "world")
x <- paste(x, collapse = " ")
cat(x)

Another sub-section

With figures...

dfr <- data.frame(x=rnorm(100), y=rnorm(1000))
plot(dfr$x, dfr$y, main = "Scatter plot")
library("ggplot2")
qplot(x, y, data = dfr)

TODO



lgatto/rauthoring documentation built on May 21, 2019, 6:07 a.m.