Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
st: AW: predict residuals in Stata 10
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
Subject
st: AW: predict residuals in Stata 10
Date
Thu, 25 Mar 2010 10:49:54 +0100
<>
Everything depends on which residual you are talking about:
*************
// Setup
vers 10.1
webuse nlswork, clear
gen age2 = age*age
gen ttl_exp2 = ttl_exp*ttl_exp
gen tenure2 = tenure*tenure
gen byte black = race==2
xtset idcode
// Fixed-effects model
xtreg ln_w grade age* ttl_exp* /*
*/ tenure* black not_smsa south, fe
predict comb, ue
predict error, e
*************
The panel case is obviously not just an extension of -regress- where you can
indeed use the syntax -predict res, res-. Look at -help xtreg postestimation
,mark(predict)- to see all available -predict- options after -xtreg-...
HTH
Martin
-----Ursprüngliche Nachricht-----
Von: [email protected]
[mailto:[email protected]] Im Auftrag von Marco Buur
Gesendet: Donnerstag, 25. März 2010 10:35
An: [email protected]
Betreff: st: predict residuals in Stata 10
Dear Stata members,
I would like to predict residuals after xtreg command (Stata 10) in
order to use meanonly residuals for Duan smearing antilog
transformation
predict res, res
but it doesn't work in Stata 10
Any hint?
Thanks
Marco
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/