rpy2 icon indicating copy to clipboard operation
rpy2 copied to clipboard

Interface to use R from Python

Results 189 rpy2 issues
Sort by recently updated
recently updated
newest added

**Describe the issue or bug** I cannot import rpy2.robjects without getting OSError, cannot load library _path_to_R.dll." I have tried numerous work-arounds suggested on stack overflow etc, but none have any...

bug
Windows

When running the following code in an IPython console with python 3.9.15 and rpy2 version 3.5.11 I get a ValueError. ``` import rpy2.robjects as ro from rpy2.robjects.packages import importr import...

I developed an R Package (lets call it 'myPackage') under Windows 10 / R 4.2.2 On my machine I could build a source package, install it, import it in Python...

bug

**Is your feature request related to a problem? Please describe.** The platform Debian describes as 'mips64el', ie little endian mips64, has been seen failing its units tests for complex variables....

enhancement

**Describe the issue or bug** I've been using "doParalell" R library in the R code, it takes much shorter time in R to execute the code than I use rpy2...

Cannot install Rpy2 using Pip install rpy2. Get the following error (no errors with other packages). (base) PS C:\Windows\system32> pip install rpy2 --user Collecting rpy2 Using cached rpy2-3.5.13.tar.gz (218 kB)...

bug
Windows

Trying to install package 'rtdists' using rpy 2 (os = windows 10, IDE = spyder, Anaconda distribution, python 3.9). Code: ```python utils.install_packages('rtdists', repos="https://github.com/rtdists/rtdists/") ``` Error: ``` Exception ignored from cffi...

bug
Windows

I have successfully installed rpy2, but have trouble while importing rpy2. Here are my codes: ``` import os, sys import rpy2 from rpy2.robjects import r # %load_ext rpy2.ipython --------------------------------------------------------------------------- ModuleNotFoundError...

bug

When I tried rpy2 3.5.5 like following codes: ``` import rpy2 import os os.environ['R_HOME'] = '~/anaconda3/envs/r4.0' os.environ['LD_LIBRARY_PATH'] = '~/anaconda3/envs/r4.0/lib/R/lib' + os.environ.get('LD_LIBRARY_PATH','') os.environ['LD_LIBRARY_PATH'] = '~/anaconda3/envs/r4.0/lib' + os.environ.get('LD_LIBRARY_PATH','') from rpy2.robjects import r...

bug

**[Original report](https://bitbucket.org/rpy2/rpy2/issue/349) by Antony Lee (Bitbucket: [anntzer](https://bitbucket.org/anntzer), GitHub: [anntzer](https://github.com/anntzer)).** ---------------------------------------- I'd like to suggest two small usability improvement for S3 objects. 1) Output the class(es) of the object in the...

enhancement