Re: [Rpy] Rpy, using R plm package

2009-04-25 Thread Peter
On 4/25/09, Ryan Banerjee-R wrote: > > Hi > > I am trying to use the "plm" panel data package in R through Rpy. > ... > stuff = rpy.r.plm(("ys ~ x1s"), data=testdata_1, model="within") > > rpy.set_default_mode(rpy.BASIC_CONVERSION) > > results = rpy.r.summary(stuff)['CoefTable'] > > The pro

[Rpy] Rpy, using R plm package

2009-04-24 Thread Ryan Banerjee-R
Hi I am trying to use the "plm" panel data package in R through Rpy. The "plm" package needs either the variables supplied in a certain order (in my example the first two columns have to be id and year) or use of the plm.data method to supply certain indices. Here is is test program which I ca