The goal of this exercise is to learn how to embed an R Markdown document in a website.

To illustrate in-line code, do simple math: five + five = 5+5

Next, I want to generate some code to illustrate plotting. First, just consider an exponential equation, \[y=exp(x)\]

x=1:100
y=log(x)
plot(x,y,main='Diminishing returns',xlab='Invested resources',ylab='Return on investment',font.lab=2)

There we go! Now hopefully on to some more interesting stuff!