Rijo John wrote:
> Is there a simple way to do Generalised Least squares in STATA?
The default -xtreg- command fits random-effects GLS models. -xtgls- fits
cross-sectional time-series FGLS regressions.
> The robust option along with the _regress_ is not equivallant to doing a
> GLS right? So appart from doing GLS as below is there a simple command
> which does the job?
>
> regress depvar x1.... xk
> predict e, residual
> generate esq = e^ 2
> regress esq x1.... xk
> predict v
> regress depvar x1.... xk [aweight = 1/v]
>
> [This is a feasible GLS estimation or feasible weighted least sqares
> estimation]
Looks like WLS to me, which you can fit with rather less hassle by
. xtreg y x1 x2 xk, be wls
which gives you the 'between-effects' model. See -whelp xtreg- for more.
CLIVE NICHOLAS |t: 0(044)191 222 5969
Politics |e: [email protected]
Newcastle University |http://www.ncl.ac.uk/geps
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/