-
lgautier committed revision 767 to the RPy (R from Python) SVN repository, changing 5 files.
2009-11-06 20:45:20 UTC by lgautier
-
lgautier committed revision 766 to the RPy (R from Python) SVN repository, changing 1 files.
2009-11-06 18:49:37 UTC by lgautier
-
Thanks.
The bugs are known since the tests , and the number of expected failures almost correctly documented
(http://rpy.sourceforge.net/rpy2/doc/html/overview.html#test-an-installation).
The documentation for version 2.0.8 will have a more specific warning.
2009-11-04 19:51:45 UTC by lgautier
-
Hi
I am tesing rpy2 on linux with the following recipe:
# python setup.py build
# cd build/lib*
# PYTHONPATH=. python py2/tests.py
3 tests fail, Linux x86_64, numpy-1.3, python-2.6.4
Here is the output:
.......................Error in .Primitive("[")(0:10, list("a", "b", "c")) :
invalid subscript type 'list'...
2009-11-04 19:32:16 UTC by nobody
-
Thanks.
The branches 2.0.x and 2.1.x have now both the fix included
(so it will be in releases 2.0.8, and 2.1.0)
The final bugfix looking will is looking like follows:
elif isinstance(o, int) or isinstance(o, long):
res = rinterface.SexpVector([o, ], rinterface.INTSXP)
(I also noted that explicit unit tests for the default conversion methods are missing; they
will be...
2009-10-27 16:14:06 UTC by lgautier
-
Hi, It took me a bit of time to track this down but the on my system (Mac os X 10.6 with python 2.6.1) some integers are passed as long. This fails in the riterface conversion. To fix this I simply modified __init__.py in robjects folder and added the following line within the default_py2ri function:
elif isinstance(o, long):
res = rinterface.SexpVector([o, ], rinterface.INTSXP...
2009-10-26 17:02:59 UTC by nobody
-
eddelbuettel committed revision 765 to the RPy (R from Python) SVN repository, changing 4 files.
2009-10-16 21:31:44 UTC by eddelbuettel
-
lgautier committed revision 764 to the RPy (R from Python) SVN repository, changing 1 files.
2009-09-25 05:31:50 UTC by lgautier
-
lgautier made 2 file-release changes.
2009-09-23 20:06:01 UTC by lgautier
-
lgautier made 1 file-release changes.
2009-09-23 20:04:01 UTC by lgautier