This notebook was created by swapping out the notebook's IPython kernel for a native R kernel. Specifically, Thomas Kluyver's R kernel on github was used, and although no problems were experienced in the creation of this notebook, he notes that the kernel is still experimental and unstable. Instructions on setup and use are given in the repo's README and will not be repeated here in case of future changes that could deprecate this notebook.
What follows is a short notebook that was created under this native kernel that can be used to test your own setup.
In [1]:
library(ggplot2)
In [2]:
head(iris)
Out[2]:
In [3]:
ggplot(iris, aes(x = Sepal.Length, y = Petal.Length)) + geom_point() + theme_bw()
Out[3]: