rpy2
rpy2 copied to clipboard
Interface to use R from Python
**Describe the issue or bug and how to reproduce** run in R console ``` reticulate::import("rpy2.robjects") ``` will result in the following message being infinitely continuously printed ``` ****found a symbol...
**Is your feature request related to a problem? Please describe.** two approaches to transfer dataframe from python to r and their performances: 1. pandas2ri conversion. Takes 50~60 seconds. 2. `pandasdf.to_parquet()`,...
**Describe the issue or bug** ro.conversion.py2rpy fails when the `pd.DataFrame()` to be converted is large. **To Reproduce** ```python import numpy as np import pandas as pd import rpy2.robjects as ro...
**Describe the issue or bug** I have a pandas dataframe (loaded from a .RDS file) with a column that contains the following types: - bool (True/False) - rpy2.rinterface_lib.sexp.NALogicalType (NA) With...
**Is your feature request related to a problem? Please describe.** I often times forget to call `%load_ext rpy2.ipython` and oftentimes make a typo in this syntax. I would like to...
**Is your feature request related to a problem? Please describe.** This is similar to #935 , but for R objects exported to Python. This was suggested in code review for...
Hi i'm newbie in this area and struggling to solve this problem I use below code in my single_cell environment python and it works well import scanpy as sc import...
**Is your feature request related to a problem? Please describe.** The R magics %R, %%R, and %Rpush allow the import of Python objects into R using optional argument-i/--input. The Python...
**Is your feature request related to a problem? Please describe.** The R magics `%R`, %%R`, and `%Rpush` allow the import of Python variables into R using optional argument `-i/--input`. However,...