在rpy2中的fitdistr

时间:2012-06-22 20:15:25

标签: python r statistics rpy2 rpython

我有一个数据列表,我希望使用最小二乘或最大似然拟合到一个分布,如here所示,但我想从python而不是R交互式shell中做到这一点

我安装了rpy2,并希望在交互式fitdistr shell中使用ipython函数,因为我已将数据导入列表中。

这个功能在哪里,我该如何使用它?

1 个答案:

答案 0 :(得分:3)

该功能在R包MASS

from rpy2.robjects.packages import importr

MASS = importr('MASS')

# the function is now at MASS.fitdistr