Hello Statalist,
I am using a mvprobit model and would like to obtain predicted probabilities post-estimation (I would use predict, p after probit). However, that option is unavailable after mvprobit. Only predict, xb is available. How would I obtain the predicted probabilities by hand? Thanks!
I illustrate below with some sample code:
I am using a mvprobit model and would like to obtain predicted probabilities post-estimation (I would use predict, p after probit). However, that option is unavailable after mvprobit. Only predict, xb is available. How would I obtain the predicted probabilities by hand? Thanks!
I illustrate below with some sample code:
Code:
use http://www.stata-press.com/data/r7/school.dta, clear mvprobit (private = years logptax loginc) (vote = years logptax loginc) mvppred ,xb
Comment