rpy2 import is not working

丶灬走出姿态 提交于 2019-12-03 06:29:59

RPy2 is a separate project from Pandas (homepage here), so you'll have to install it separately. You should be able to do pip install rpy2, then restart Python and try again.

This might not apply directly to your question, but ever since pandas and rpy2 have upgraded, their interface has changed. In order to set it up, you must now:

from rpy2.robjects import r, pandas2ri

pandas2ri.activate()

Now, in order to change a Pandas dataframe into an R dataframe, one must use pandas2ri.py2ri(), or use pandas2ri.ri2py() if you want change an R dataframe into a Pandas dataframe. Further information can be found at https://pandas.pydata.org/pandas-docs/stable/r_interface.html.

Well, first you have to install rpy2. If you are using conda you can do it using the following command

conda install -c r rpy2 

Then, if you want to use R on Jupyter Notebook environment you can activate R using

%load_ext rpy2.ipython

In my case it worked when I installed it in Anaconda Prompt with a command:

conda install -m rpy2

After that I had to move rpy2 directory from rpy2-2.9.0-py3.6-win32.egg (folder that was installed to) cause it didn't recognized it after installation...and moved only rpy2 folder to the following path:

C:\Users..\Anaconda3\Lib\site-packages (where all packages are called from)

That solved problem for me.

That looks like a pandas interface to rpy2. Separately, you also need rpy2 installed on your system. I don't have rpy2, so it was easy for me to check this:

In [1]: import pandas.rpy.common
(...)
ImportError: No module named rpy2.robjects.packages


In [2]: import rpy2
(...)
ImportError: No module named rpy2

I installed it using pip:

$ pip install rpy2

In [1]: import pandas.rpy.common

It works! It import rpy2 works for you, but import pandas.rpy.common does not then the problem might be more subtle.

In my case it initially did not wor installing it with conda. I solved it by first changing the active environment.

source activate [environment Name]
conda install -c r rpy2=2.8.5

I recently ran into a similar issue. I was trying to install rpy2 using anaconda version of python(3.6.3). Below, mentioned command worked for me,

* python3 -m conda install rpy2

I installed using, conda install -m rpy2

and moved the directory of rpy2 from rpy2-2.9.1-py3.6-win-amd64.egg folder to the path from where the packages are called during the import and then it worked.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!