2020-04-17 11:47:32 +02:00
|
|
|
Python interface to the R language.
|
|
|
|
|
2020-06-26 13:20:43 +02:00
|
|
|
rpy2 is running an embedded R, providing access to it
|
2020-04-17 11:47:32 +02:00
|
|
|
from Python using R's own C-API through either:
|
|
|
|
|
2020-06-26 13:20:43 +02:00
|
|
|
1) a high-level interface making R functions and objects
|
|
|
|
just like Python functions and providing a seamless
|
2020-04-17 11:47:32 +02:00
|
|
|
conversion to numpy and pandas data structures
|
|
|
|
|
|
|
|
2) a low-level interface closer to the C-API
|
|
|
|
|
2020-06-26 13:20:43 +02:00
|
|
|
It is also providing features for when working with
|
2020-04-17 11:47:32 +02:00
|
|
|
jupyter notebooks or ipython.
|
|
|
|
|
|
|
|
NOTE:
|
|
|
|
R needs to be compiled with the shared library flag,
|
|
|
|
thus: build R on SBo with R_SHLIB=yes and BLAS_SHLIB=yes
|
2020-04-24 03:04:37 +02:00
|
|
|
(See also the notes in the rpy2.Slackbuild)
|
|
|
|
|
2023-04-13 18:32:54 +02:00
|
|
|
Remove installed rpy2 before building and upgrading to a new version.
|
|
|
|
|
|
|
|
|
2020-05-22 17:16:55 +02:00
|
|
|
home:https://rpy2.github.io/
|
2020-06-26 13:20:43 +02:00
|
|
|
documentation:https://rpy2.github.io/doc/latest/html/index.html
|