Title

This is an R Markdown document. Markdown is a simple formatting syntax for authoring web pages (click the MD toolbar button for help on Markdown).

library(ggplot2)
## Warning: package 'ggplot2' was built under R version 2.15.3
dsmall <- diamonds[sample(nrow(diamonds), 100), ]
qplot(carat, price, data = dsmall, shape = cut)

plot of chunk unnamed-chunk-1

Finish