- 授权协议: GPL
- 开发语言: Python
- 操作系统: Linux
- 软件首页: http://rpy.sourceforge.net/
- 软件文档: http://rpy.sourceforge.net/rpy_documentation.html
软件介绍
RPy是一个非常简单、健壮的R语言的Python调用接口。
示例代码:
import rpy2.robjects as robjects
r = robjects.r
ctl = robjects.FloatVector([4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14])
trt = robjects.FloatVector([4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69])
group = r.gl(2, 10, 20, labels = ["Ctl","Trt"])
weight = ctl + trt
robjects.globalEnv["weight"] = weight
robjects.globalEnv["group"] = group
lm_D9 = r.lm("weight ~ group")
print(r.anova(lm_D9))
lm_D90 = r.lm("weight ~ group - 1")
print(r.summary(lm_D90))
Effective Modern C++
Scott Meyers / O'Reilly Media / 2014-12 / USD 49.99
Learn how to program expertly with C++ with this practical book from Scott Meyers, one of the world's foremost authorities on this systems programming language. Scott Meyers takes some of the most dif......一起来看看 《Effective Modern C++》 这本书的介绍吧!
