I'm new to rpy2 and am having trouble using importr to import the R packages 'xts' and 'quantmod'
Code is:
from rpy2.robjects.packages import importr
xts = importr('xts')
quantmod = importr('quantmod')
Errors are:
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)
I don't get this problem using importr for many other packages, e.g. 'stats', 'graphics', 'zoo', 'ggplot2'
Versions:
- python version 2.7.3
- R version 2.15.2
- rpy2 version '2.3.0beta1'
Any help would be greatly appreciated