Git Product home page Git Product logo

Comments (6)

lgautier avatar lgautier commented on June 19, 2024

Original comment by Laurent Gautier (Bitbucket: lgautier, GitHub: lgautier).


The question is how.
How does rpy convert a LANGSXP into a pure python object ?

from rpy2.

lgautier avatar lgautier commented on June 19, 2024

Original comment by Anonymous.


It doesn't convert, it just leaves it as an R object. However, when rpy_classic runs across a LANGSXP it raises a Value Error:

File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/rpy2/rpy_classic.py", line 160, in rpy2py_basic
raise ValueError("Invalid type %i (%s) for 'obj'." %(obj.typeof, ri.str_typeint(obj.typeof)))
ValueError: Invalid type 6 (LANGSXP) for 'obj'.

I think the problem is that LANGSXP objects have a length attribute, and so they aren't being passed to the res = Robj(obj) command, but instead are being passed to the conversion commands which don't know what to do with it.

from rpy2.

lgautier avatar lgautier commented on June 19, 2024

Original comment by Anonymous.


I tried the following modification of the rpy2py_basic function that seems to work (bold indicates my additions):
`
#!python

def rpy2py_basic(obj):
if hasattr(obj, 'len'):
if obj.typeof in [ri.INTSXP, ri.REALSXP, ri.CPLXSXP,
ri.LGLSXP, ri.STRSXP]:
res = [x for x in obj]
elif obj.typeof in [ri.VECSXP]:
res = [rpy2py(x) for x in obj]
elif obj.typeof in [ri.LANGSXP]:
res = Robj(obj)

else:
raise ValueError("Invalid type %i (%s) for 'obj'." %(obj.typeof, ri.str_typeint(obj.typeof)))
else:
res = Robj(obj)
return res

from rpy2.

lgautier avatar lgautier commented on June 19, 2024

Original comment by Laurent Gautier (Bitbucket: lgautier, GitHub: lgautier).


Bump!

from rpy2.

lgautier avatar lgautier commented on June 19, 2024

Original comment by Laurent Gautier (Bitbucket: lgautier, GitHub: lgautier).


The fix is now in the branch rpy2-2.1dev

from rpy2.

lgautier avatar lgautier commented on June 19, 2024

Original comment by Laurent Gautier (Bitbucket: lgautier, GitHub: lgautier).


Removing version: 2.1.0 (automated comment)

from rpy2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.