Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个一维数据列表,我想使用最小二乘或最大似然来拟合分布,如此处所示,但我想从 python 而不是 R 交互式 shell 中进行。
我安装了rpy2,并希望fitdistr在交互式ipythonshell 中使用该功能,因为我已将数据导入列表中。
fitdistr
ipython
这个功能在哪里,我该如何使用它?
该函数在 R 包 MASS 中
from rpy2.robjects.packages import importr MASS = importr('MASS') # the function is now at MASS.fitdistr