Skip to content
Prev 3909 / 15274 Next

R: No intercep for First-Difference Estimator in PLM(panel data) - follow-up

Thanks Giovanni,

Until the bug is fixed, I used the following code to get the result

dwage<-diff(wage2$wage,1)[wage2$time!=6]
dmarr<-diff(wage2$marr,1)[wage2$time!=6]

fd<-lm(dwage~dmarr+0)
summary(fd)
fd1<-lm(dwage~dmarr)
summary(fd1)

Robert
--------------------------------------------------
From: "Millo Giovanni" <Giovanni_Millo at Generali.com>
Sent: Wednesday, April 15, 2009 11:48 AM
To: "Robert Iquiapaza" <rbali at ufmg.br>; <r-sig-finance at stat.math.ethz.ch>
Cc: "Yves Croissant" <yves.croissant at let.ish-lyon.cnrs.fr>; "Christian 
Kleiber" <christian.kleiber at unibas.ch>
Subject: R: [R-SIG-Finance] No intercep for First-Difference Estimator in 
PLM(panel data) - follow-up