Re: [Rpy] Pickling support

2008-05-19 Thread Gregory Warnes
The best way to store R objects is to use R's own 'save()' and 'load ()' functions. In order to use these, it is necessary for the objects to be assigned to R names, so you would have something like... from rpy import r # code here to create objects 'a' and 'b' r.as

[Rpy] Pickling support

2008-05-15 Thread John Reid
Hi, I know more about python than R and I'm wondering is there any pickling support in rpy? If there isn't, is there any scope for providing some? I've used r.dput a few times to persist some R objects but it would be very useful if there was a more transparent way to do this. Anyone got any t