Use R in Jupyter Notebook
To use R in Jupyter Notebook, make sure you have the following things installed in your computer -
Now, to use R in jupyter notebook, follow the steps -
- Install IRkernal package.
install.packages('IRkernel')
- Install kernal spec for the current user.
IRkernel::installspec()
If you passuser = FALSE
inside the function, then the spec will be installed for all users/system wide.
Done! 😄 👏