This is an example for a simple operation and a plot.

x <- 1:5
y <- 6:10
x + y
## [1]  7  9 11 13 15
plot(x, y)

plot of chunk unnamed-chunk-1