glm()でのlm()基本関数

R における Generalized Linear Models

Richard Erickson

Instructor

モデルオブジェクトの操作

  • 出力との対話を可能にします
  • Base Rの関数は glm() にも適用できます
  • 便利なショートカット
R における Generalized Linear Models

モデルの出力

  • print() は通常デフォルト
print(poisson_out)
Call:  glm(formula = y ~ x, family = "poisson", data = dat)

Coefficients:
(Intercept)            x  
   -1.43036      0.05815  

Degrees of Freedom: 29 Total (i.e. Null);  28 Residual
Null Deviance:        35.63 
Residual Deviance: 30.92     AIC: 66.02
R における Generalized Linear Models

モデルのサマリー

  • summary() で詳細を確認できます
summary(poisson_out)
#...
Deviance Residuals: 
    Min       1Q   Median       3Q      Max  
-1.6547  -0.9666  -0.7226   0.3830   2.3022

Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -1.43036 0.59004 -2.424 0.0153 * x 0.05815 0.02779 2.093 0.0364 *
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 35.627 on 29 degrees of freedom Residual deviance: 30.918 on 28 degrees of freedom AIC: 66.024
Number of Fisher Scoring iterations: 5
R における Generalized Linear Models

整形された出力

library(broom)
tidy(poisson_out)
         term    estimate  std.error statistic    p.value
1 (Intercept) -1.43035579 0.59003923 -2.424171 0.01534339
2           x  0.05814858 0.02778801  2.092578 0.03638686
R における Generalized Linear Models

回帰係数

  • coef() で回帰係数を表示します
coef(poisson_out)
(Intercept)           x 
-1.43035579  0.05814858
R における Generalized Linear Models

信頼区間

  • confint() で信頼区間を推定します
confint(poisson_out)
Waiting for profiling to be done...
               2.5 %     97.5 %
(Intercept) -2.725545344 -0.3897748
x            0.005500767  0.1155564
R における Generalized Linear Models

予測

  • predict(model, new_data)
  • new_data 引数:
    • 未指定時:元のデータに基づく予測値を返します。
    • 指定時:new_data に対する予測値を返します。
R における Generalized Linear Models

火災負傷データセット

  • 民間人の日次負傷件数
  • ケンタッキー州ルイビル
  • カウントデータ、ゼロ多数

ルイビル(ケンタッキー州)の火災による日次負傷件数

R における Generalized Linear Models

さあ、練習しましょう!

R における Generalized Linear Models

Preparing Video For Download...