Hello everyone,
I am leaning stata by following already made "do foles"
The command below works fine. But as I replace qui with "quietly" (as I believe these two are the same command), it brings an error msg : "invalid syntax"
Could you please explain me what is wrong?
PS. would you recommend other good sources to learn stata - I want to learn by replicating already made do files - or if there is any other good ways to learn.
Thanks a lot!
qui {
rename State state_old
gen state =.
replace state = 00 if state_old==99
label define state_lbl 00 "notdefined" 01 "somewhere" 01 "delhi" ///
label value state state_lbl
}
I am leaning stata by following already made "do foles"
The command below works fine. But as I replace qui with "quietly" (as I believe these two are the same command), it brings an error msg : "invalid syntax"
Could you please explain me what is wrong?
PS. would you recommend other good sources to learn stata - I want to learn by replicating already made do files - or if there is any other good ways to learn.
Thanks a lot!
qui {
rename State state_old
gen state =.
replace state = 00 if state_old==99
label define state_lbl 00 "notdefined" 01 "somewhere" 01 "delhi" ///
label value state state_lbl
}
Comment