I am using rpy2-2.0.3.
I am using Python and R in the shared library and don't know if updating
them will cause problems to other people's scripts. But I will try to get
updated Python and R in my local directory and retry.
BTW, if i upgrade R, would rpy2 can find R? Or should i reinstall rpy2?
T
The bugfix release 2.0.4 is out and the source package available on
SourceForge.
The release notes are:
Release 2.0.4
=
Bugs fixed
--
- Added missing named parameter *wantfun* to method :meth:`Renvironment.get`
(making it similar to :meth:`SexpEnvironment.get`)
- Leak in
I'm trying to do something similar: I'd like to create a save file that
includes the current state of the R environment. I don't want to create
a separate file for the R environment via one of R's built-in commands,
so I thought I'd pickle globalEnv alongside some other objects I'm
pickling. When I
FWIW, the solution I have for now is to use dump(ls(), file="") to get a
deparsed string representation of all the objects in memory, which can
then be pickled. I'm not having problems with it right now in any simple
cases, but I can imagine there are situations where deparsing gets
hairy, so being
thank you,laurent.
I want windows binary.
laurent wrote:
> The bugfix release 2.0.4 is out and the source package available on
> SourceForge.
>
>
> The release notes are:
>
> Release 2.0.4
> =
>
> Bugs fixed
> --
>
> - Added missing named parameter *wantfun* to method