Dear Listers,
just stumbled over this:
When dropping a varaible in Stata 15.1, previously returned macros r() are deleted.
So, if I do the following code, Stata 15 displays a missing after the last line, whereas Stata 14 displays the mean value.
set obs 100
ge bla=runiform()
su bla
di r(mean)
drop bla
di r(mean)
Don't know if that's wanted, but might cause problems with older do-files (and ados).
Volker
just stumbled over this:
When dropping a varaible in Stata 15.1, previously returned macros r() are deleted.
So, if I do the following code, Stata 15 displays a missing after the last line, whereas Stata 14 displays the mean value.
set obs 100
ge bla=runiform()
su bla
di r(mean)
drop bla
di r(mean)
Don't know if that's wanted, but might cause problems with older do-files (and ados).
Volker
Comment