This is a demo notebook for the R language.
For learning about R, please check this tutorial.
For learning about jupyter notebooks, please check this other tutorial.
In [ ]:
2+2
In [ ]:
library(ggplot2)
x = seq(-pi, pi, 0.01)
qplot(x, sin(x))
In [ ]: