मॉडल गुणांक के मानक त्रुटियां सहसंयोजक मैट्रिक्स के विकर्ण प्रविष्टियों की वर्गमूल हैं। निम्नलिखित को धयान मे रखते हुए:
, जहां एक्स मैं , जे का मूल्य है j के लिए वें भविष्यवक्ता मैं वें टिप्पणियों।X = ⎡⎣⎢⎢⎢⎢⎢11⋮1x1,1x2,1⋮xn,1……⋱…x1,px2,p⋮xn,p⎤⎦⎥⎥⎥⎥⎥xi,jji
(नोट: यह एक अवरोधन के साथ एक मॉडल मानता है।)
-
, जहां π मैं अवलोकन के लिए कक्षा सदस्यता की अनुमानित संभावना का प्रतिनिधित्व करता है i ।V = ⎡⎣⎢⎢⎢⎢⎢π^1(1−π^1)0⋮00π^2(1−π^2)⋮0……⋱…00⋮π^n(1−π^n)⎤⎦⎥⎥⎥⎥⎥π^ii
सहसंयोजक मैट्रिक्स के रूप में लिखा जा सकता है:
(एक्सटीवी एक्स)- 1
इसे निम्नलिखित कोड के साथ लागू किया जा सकता है:
import numpy as np
from sklearn import linear_model
# Initiate logistic regression object
logit = linear_model.LogisticRegression()
# Fit model. Let X_train = matrix of predictors, y_train = matrix of variable.
# NOTE: Do not include a column for the intercept when fitting the model.
resLogit = logit.fit(X_train, y_train)
# Calculate matrix of predicted class probabilities.
# Check resLogit.classes_ to make sure that sklearn ordered your classes as expected
predProbs = resLogit.predict_proba(X_train)
# Design matrix -- add column of 1's at the beginning of your X_train matrix
X_design = np.hstack([np.ones((X_train.shape[0], 1)), X_train])
# Initiate matrix of 0's, fill diagonal with each predicted observation's variance
V = np.diagflat(np.product(predProbs, axis=1))
# Covariance matrix
# Note that the @-operater does matrix multiplication in Python 3.5+, so if you're running
# Python 3.5+, you can replace the covLogit-line below with the more readable:
# covLogit = np.linalg.inv(X_design.T @ V @ X_design)
covLogit = np.linalg.inv(np.dot(np.dot(X_design.T, V), X_design))
print("Covariance matrix: ", covLogit)
# Standard errors
print("Standard errors: ", np.sqrt(np.diag(covLogit)))
# Wald statistic (coefficient / s.e.) ^ 2
logitParams = np.insert(resLogit.coef_, 0, resLogit.intercept_)
print("Wald statistics: ", (logitParams / np.sqrt(np.diag(covLogit))) ** 2)
कहा जा रहा है कि सभी statsmodels
का उपयोग करने के लिए एक बेहतर पैकेज होगा , यदि आप "आउट-ऑफ-द-बॉक्स" डायग्नोस्टिक्स तक पहुंच चाहते हैं।