Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: Not sorted error in forvalues loop


From   Dorothy Bridges <[email protected]>
To   [email protected]
Subject   st: Not sorted error in forvalues loop
Date   Mon, 5 Oct 2009 11:57:58 -0400

Stata stops the following loop with a "not sorted" line after the
"sort id difa`i'" command (not after the subsequent command, after the
sort command).  What am I missing?  Thanks!!

forvalues i = 1/5 {
by id treated: gen var_a`i'=.
replace var_a`i'=ln_var if ante_`i'==1
by id treated: egen var_a`i'_mean=mean(var_a`i')
gen difa`i'=.
replace difa`i'=var_a`i'_mean - var_a`i'_mean[_n-1] if id==id[_n-1]
replace difa`i'=. if difa`i'==0
sort id difa`i'
replace difa`i'=difa`i'[_n-1] if difa`i'==. & id==id[_n-1]
}
*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index