모형 계수의 표준 오차는 공분산 행렬의 대각선 항목의 제곱근입니다. 다음을 고려하세요:
x i , j j iX = ⎡⎣⎢⎢⎢⎢⎢11⋮1엑스1 , 1엑스2 , 1⋮엑스n , 1……⋱…엑스1 , p엑스2 , p⋮엑스n , p⎤⎦⎥⎥⎥⎥⎥
여기서 는 번째 관측치에 대한 번째 예측 변수 .엑스I , J제이나는
(참고 : 이것은 인터셉트가있는 모델을 가정합니다.)
- π I 나는V = ⎡⎣⎢⎢⎢⎢⎢π^1( 1 − π^1)0⋮00π^2( 1 − π^2)⋮0……⋱…00⋮π^엔( 1 − π^엔)⎤⎦⎥⎥⎥⎥⎥
, 관찰 클래스 멤버십의 예측 확률 나타내는 .π^나는나는
공분산 행렬은 다음과 같이 쓸 수 있습니다.
(엑스티V X)− 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
"즉석"진단에 액세스하려는 경우 더 나은 패키지가 될 것입니다.