Hi list!
Normally in rpy2 I can do the following (or something similar):
>>> Line_ = robjects.r["Line"]
>>> Line_
to get a function or variable from the global environment. Note: Line is
part of the sp (spatial objects) R package. However, if I've
(accidentally) created a variable named 'Li
Carson Farmer wrote:
> Hi list!
>
> Normally in rpy2 I can do the following (or something similar):
>
> >>> Line_ = robjects.r["Line"]
> >>> Line_
>
>
> to get a function or variable from the global environment. Note: Line is
> part of the sp (spatial objects) R package. However, if I've