我是 rpy2 的新手,在使用 importr 导入 R 包“xts”和“quantmod”时遇到问题
代码是:
from rpy2.robjects.packages import importr
xts = importr('xts')
quantmod = importr('quantmod')
错误是:
LibraryError: Conflict when converting R symbol in the package "xts" to a Python symbol (.subset.xts -> _subset_xts while there is already _subset_xts)
LibraryError: Conflict when converting R symbol in the package "quantmod" to a Python symbol (skeleton.TA -> skeleton_TA while there is already skeleton_TA)
对于许多其他软件包,例如“stats”、“graphics”、“zoo”、“ggplot2”,我没有遇到这个问题
版本:
- 蟒蛇版本2.7.3
- R 版本 2.15.2
- rpy2版本'2.3.0beta1'
任何帮助将不胜感激