Rのロジスティック回帰に関する Christopher Manningの記事は、次のようにRのロジスティック回帰を示しています。
ced.logr <- glm(ced.del ~ cat + follows + factor(class),
family=binomial)
いくつかの出力:
> summary(ced.logr)
Call:
glm(formula = ced.del ~ cat + follows + factor(class),
family = binomial("logit"))
Deviance Residuals:
Min 1Q Median 3Q Max
-3.24384 -1.34325 0.04954 1.01488 6.40094
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) -1.31827 0.12221 -10.787 < 2e-16
catd -0.16931 0.10032 -1.688 0.091459
catm 0.17858 0.08952 1.995 0.046053
catn 0.66672 0.09651 6.908 4.91e-12
catv -0.76754 0.21844 -3.514 0.000442
followsP 0.95255 0.07400 12.872 < 2e-16
followsV 0.53408 0.05660 9.436 < 2e-16
factor(class)2 1.27045 0.10320 12.310 < 2e-16
factor(class)3 1.04805 0.10355 10.122 < 2e-16
factor(class)4 1.37425 0.10155 13.532 < 2e-16
(Dispersion parameter for binomial family taken to be 1)
Null deviance: 958.66 on 51 degrees of freedom
Residual deviance: 198.63 on 42 degrees of freedom
AIC: 446.10
Number of Fisher Scoring iterations: 4
次に、係数の解釈方法、さまざまなモデルの比較方法などについて詳しく説明します。とても便利です。
ただし、モデルはどの程度の分散を考慮していますか?ロジスティック回帰のStataのページは言います:
技術的には、ロジスティック回帰ではOLS回帰と同じ方法でを計算することはできません。ロジスティック回帰の擬似R 2は、1 - L 1として定義されます。、L0は「定常のみ」モデルとの対数尤度を表し、L1は定数と予測子との完全なモデルの対数尤度です。
私はこれを高いレベルで理解しています。定数のみのモデルには、パラメーターはありません(切片の項のみ)。対数尤度は、パラメーターがデータにどの程度適合するかを示す尺度です。実際には、ずれがあるかもしれないというヒントの一種マニング。おそらく、ヌル偏差は定数のみであり、残差偏差はモデルの− 2 log Lですか?しかし、私は明確ではありません。
この例を使用して、Rの疑似実際に計算する方法を誰かが検証できますか?