Ben Stabler wrote:
> I'm rather new to RPY, but have a lot of experience with R and Python. What
> I want to do is something like this.
>
> import rpy
>
> #do a bunch of R calls that use up a bunch of memory like x <-
> matrix(0,2000,2000) 200 times.
> #then R eventually says that it can
Ernst O Ahlberg Helgee wrote:
> Hi!
> Im trying to get rpy to produce a levelplot using package lattice, but it
> fails. I dont get error messages, just a r object or python dict.
> This is the code:
> from rpy import *
> import Numeric as N
> r.library('lattice')
> a = [[1,2,3],[4,5,6],[7,8,9]]
>
Myles English wrote:
> Hello,
>
> rpy 1.25
> ubuntu 6.10
> python 2.4
>
> The code below can be copied and pasted in the R interpreter or an empty
> file, as appropriate, to be run easily. The python code imports
> dataframe.py that is included as an example in the rpy distribution.
>
> My ques