Hi Lucien,
I don't know why this problem is occurring - initialize is a standard parallel command. My last suggestion on this topic is to check that you have latest version of parallel installed.
As for coefficients, Stata certainly does calculate coefficients - your above program saves them to a dataset. And you certainly can graph the coefficients estimates contained within said dataset. I don't know exactly what kind of graph you want, but I suspect that you may be looking for a combination of twoway scatter (for coefficient estimates) and twoway rspike (for CI estimates).
Something like
All the best,
Matt
I don't know why this problem is occurring - initialize is a standard parallel command. My last suggestion on this topic is to check that you have latest version of parallel installed.
As for coefficients, Stata certainly does calculate coefficients - your above program saves them to a dataset. And you certainly can graph the coefficients estimates contained within said dataset. I don't know exactly what kind of graph you want, but I suspect that you may be looking for a combination of twoway scatter (for coefficient estimates) and twoway rspike (for CI estimates).
Something like
Code:
graph twoway rspike ub_90 lb_90 i_pos || scatter beta i_pos
Matt
Comment