美文网首页R生信软件安装python
「R高级」在jupyter notebook里运行R代码

「R高级」在jupyter notebook里运行R代码

作者: xuzhougeng | 来源:发表于2019-07-23 10:28 被阅读49次

    要是连Rstudio都不会用的话,先去老老实实用Rstudio吧

    新装的jupyter notebook 默认只有Python这一个选项

    初始状态

    为了能够让Jupyter 里出现R,需要先打开R的命令行,用devtools装一个R包IRkernel/IRkernel

    install.packages("devtools")
    devtools::install_github('IRkernel/IRkernel')
    

    然后在R的命令行里激活

    IRkernel::installspec()
    

    这行命令会有一个提示信息

    #  xzg是我的用户名
    [InstallKernelSpec] Installed kernelspec ir in /home/xzg/.local/share/jupyter/kernels/ir
    

    重新打开jupyter notebook, 这里就出现了R的选项

    出现了R

    然后就可以写代码了

    熟悉的ggplot2

    让人感动的是,alt + - 依旧是熟悉的"<-",ctrl + shift+ M 出现的是 "%>" 还是原来的配方,还是熟悉的味道。

    相关文章

      网友评论

        本文标题:「R高级」在jupyter notebook里运行R代码

        本文链接:https://www.haomeiwen.com/subject/lhanlctx.html