http://www.stata.com/support/faqs/statistics/predicted-probabilities-after-probit/
如果之前用30国数据估计出了参数,即用
probit crisis x1 x2 x3 其中crisis是0,1 binary dummy 该国是否遭受了危机
现在有我国的数据x1=c1, x2=c2, x3=c3
那就:
display normprob(_b[x1]*c1+_b[x2]*c2+_b[x3]*c3+_b[_cons])
应该就是我国的predicted probability of crisis
或是这样的情况
probit crisi x1 x2 x3 if iso3!="CHN"
sum x1 x2 x3 if iso3=="CHN"
提出mean of x1 mean of x2 mean of x3, 不知道怎么表达——r(mean)[x1]不对,请教各位,
再display normprob(_b[x1]*mean of x1+_b[x2]*mean of x2+_b[x3]*mean of x3+_b[_cons])