In [4]:
x <- rnorm(1000, 4, 35)
plot(x)



In [5]:
plot(x**2*x)


How to install IRkernel on Linux 14.04

sudo apt-get install libzmq3-dev

Start R in the same terminal and proceed as below. You can install snapshot packages and the kernel spec via

install.packages(c('rzmq','repr','IRkernel',"IRdisplay'),
                repos = c('http://irkernel.github.io/', getOption('repos')),
                type = 'soure')
# I had to pick a mirror the first time I ran that here
IRkernel::installspec()

Then something about repeating install.packages to update the source installation. We'll see about that


In [ ]: