在stata的help gmm中,有下面一段说明,有没有大神帮忙解释一下啊,还有,global是什么意思,谢谢啦
Using gmm to fit a nonlinear least-squares model (probit)
. global Phi "normal({b0}+{b1}*x)"
. global phi "normalden({b0}+{b1}*x)"
. gmm ( (y - $Phi)*(-x*$phi) ) ( (y - $Phi)*(-1*$phi) ) winitial(identity) onestep
. nl (y = $Phi)