R on Jupyter Notebook [closed]

0

I use the Python Jupyter Notebook. I want to start using R too on the same platform. I know it's possible, but I did not find out how.

Could anyone give a tip?

    
asked by anonymous 13.06.2018 / 02:25

1 answer

1

Basically what you need to do is install the IRKernel that is equivalent to IPython.

To install just run on the R:

install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'))
devtools::install_github('IRkernel/IRkernel')

Then (also in R) - to make it available.

IRkernel::installspec()

More information here .

    
13.06.2018 / 15:37