Re: [Rpy] a few high-level questions about rpy2 and a question about matrix indexing

2008-06-30 Thread Laurent Gautier
I didn't. I like the idea. Thanks, L. 2008/7/1 Michael Sorich <[EMAIL PROTECTED]>: > With regard to R indexing on the objects have you thought about using > the __getitem__ method of an attribute. > > E.g. python indexing m[:,1], r indexing m.r[:,2] > > class RIndex(object): >def __init

Re: [Rpy] a few high-level questions about rpy2 and a question about matrix indexing

2008-06-30 Thread Michael Sorich
With regard to R indexing on the objects have you thought about using the __getitem__ method of an attribute. E.g. python indexing m[:,1], r indexing m.r[:,2] class RIndex(object): def __init__(self, parent): self.parent = parent def __getitem__(self, index): return self.

Re: [Rpy] a few high-level questions about rpy2 and a question about matrix indexing

2008-06-25 Thread Laurent Gautier
2008/6/25 laurent oget <[EMAIL PROTECTED]>: > Wise Rpy fellows, > > I just came back to using R after a few years and am happy to see that the > RPy project is alive and well, and hope I will be able to provide some help > in the future. > > For now I have a few questions about rpy2: > -is there a

[Rpy] a few high-level questions about rpy2 and a question about matrix indexing

2008-06-25 Thread laurent oget
Wise Rpy fellows, I just came back to using R after a few years and am happy to see that the RPy project is alive and well, and hope I will be able to provide some help in the future. For now I have a few questions about rpy2: -is there a document describing the motivation behind the rewrite and