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
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.
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
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