using jul3 update to StataSE on windows x64:
neither the break key nor the red break button works to interrupt the following do file:
forvalues i = 1/315 {
cap nl hockey y x1 x2 x3 if ok2&(id==`i')
di "rc "_rc " id " `i'
if _rc ==0 qui {
replace breakpointx1 = _b[breakpoint] if id==`i'
replace slopelx1 = _b[slope_l] if id==`i'
replace sloperx1 = _b[slope_r] if id==`i'
replace slopex2 = _b[x2] if id==`i'
replace slopex3 = _b[x3] if id==`i'
replace r2 = e(r2) if id==`i'
}
}
neither the nl.ado nor the nlhockey.ado files have issued a 'nobreak' commmand
documention on .do files state that the break key should be active during .do file execution.
what am i missing?
thanks in advance.
neither the break key nor the red break button works to interrupt the following do file:
forvalues i = 1/315 {
cap nl hockey y x1 x2 x3 if ok2&(id==`i')
di "rc "_rc " id " `i'
if _rc ==0 qui {
replace breakpointx1 = _b[breakpoint] if id==`i'
replace slopelx1 = _b[slope_l] if id==`i'
replace sloperx1 = _b[slope_r] if id==`i'
replace slopex2 = _b[x2] if id==`i'
replace slopex3 = _b[x3] if id==`i'
replace r2 = e(r2) if id==`i'
}
}
neither the nl.ado nor the nlhockey.ado files have issued a 'nobreak' commmand
documention on .do files state that the break key should be active during .do file execution.
what am i missing?
thanks in advance.
Comment