Jupyter Notebook实现直接调用R
【摘要】 学习了python,已经能够满足大部分需求了。但是最近学习生息和组学数据分析,以后的论文是必须要用R语言来写的。 那就学吧。因为之前一直在用jupyter notebook来写分析报告,所以我就想也用jupyter写R,这样子就很方便了。高兴的是确实可以在jupyter中使用R,
安装基础包
repr, IRdisplay, evaluate, crayon, pbdZM...
学习了python,已经能够满足大部分需求了。但是最近学习生息和组学数据分析,以后的论文是必须要用R语言来写的。
那就学吧。因为之前一直在用jupyter notebook来写分析报告,所以我就想也用jupyter写R,这样子就很方便了。高兴的是确实可以在jupyter中使用R,
安装基础包
repr, IRdisplay, evaluate, crayon, pbdZMQ, devtools, uuid, digest
R中安装内核包(IRkernel)
IRkernel
关联jupyter notebook和R
-
# 只在当前用户下安装
-
IRkernel::installspec()
-
# 或者是在系统下安装
-
IRkernel::installspec(user = FALSE)
-
plotStar <- function(x, y, radius, angle=180, xyratio=1, ...){
-
i <- 1:11
-
alpha <- 2*pi / 10
-
r <- radius * (i %% 2 + 1)/2
-
omega <- alpha * i + angle * pi /180
-
invisible(mapply(function(a, b, ...)
-
polygon(r*sin(omega) + a, r*cos(omega) * xyratio + b, ...),
-
x, y, ...))
-
}
-
plot.new()
-
plotStar(.5, .5, .3, pch=3, col=2)
参考资料:
https://irkernel.github.io/installation/#windows-panel
文章来源: drugai.blog.csdn.net,作者:DrugAI,版权归原作者所有,如需转载,请联系作者。
原文链接:drugai.blog.csdn.net/article/details/86617565
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)