在jupyter中使用R

如果想在Jupyter Notebook中使用R语言,以下几个步骤操作可行:
1、启动Anaconda Prompt

2、进入R的安装位置,切换到R的安装位置:D:\Program Files\R\R-3.4.3\bin,启动R,具体代码操作步骤如下,在Anaconda Prompt中逐行输入:

C:\Users\think>d:
D:\>cd D:\Program Files\R\R-3.4.3\bin
D:\Program Files\R\R-3.4.3\bin>r

3、运行代码

devtools::install_github('IRkernel/IRkernel')
IRkernel::installspec()

如果提示:

Error in loadNamespace(x) : there is no package called 'devtools'

则先需要在R中安装好包:‘devtools’,再执行上面的代码就ok了。

4、退出R

quit()

5、启动jupyter notebook
在jupyter中使用R_第1张图片
R已经被添加进去,可以愉快玩耍了。

参考文章:https://zhuanlan.zhihu.com/p/112388690

你可能感兴趣的:(R语言,jupyter,r语言,ide)