Just a heads up: Stata 15 changes the format of some ereturned results. This can zap some user-written commands, e,g. some of Long and Freeses's popular spost13 commands (findit spost13_ado). For example,
Luckily there is a simple solution. Just use version control with the estimation command:
Long and Freese are working on a fix so that version control will not be necessary.
In general, if some user-written post-estimation command stops working in Stata 15, try using version control with the estimation command.
Code:
. webuse nhanes2f, clear . quietly ologit health weight i.female i.black . brant variable cut1 not found r(111);
Code:
webuse nhanes2f, clear version 14.2: quietly ologit health weight i.female i.black brant
In general, if some user-written post-estimation command stops working in Stata 15, try using version control with the estimation command.
Comment