statsmodels.discrete.discrete_model.MNLogit.score_obs¶
-
MNLogit.
score_obs
(params)[source]¶ Jacobian matrix for multinomial logit model log-likelihood
Parameters: params (array) – The parameters of the multinomial logit model. Returns: jac – The derivative of the loglikelihood for each observation evaluated at params . Return type: array-like Notes
∂lnLi∂βj=(dij−exp(β′jxi)∑Jk=0exp(β′kxi))xifor j=1,...,J, for observations i=1,...,n
In the multinomial model the score vector is K x (J-1) but is returned as a flattened array. The Jacobian has the observations in rows and the flatteded array of derivatives in columns.