オブジェクトからの値の取り出し
- result<-glm(formula = P ~ G, family = binomial) というコマンドで取り込んだオブジェクトから、前項のを取り出すには・・・
- summary<-summary(result)
- summary$coefficients, もしくは、summary[12]に以下の内容がリストで格納されているので
Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -0.5898 0.2627 -2.246 0.02473 * G 0.5073 0.1880 2.699 0.00696 **
-
- summary$coeffients[2] に 0.5073が、summary$coefficients[4] に 0.1880が、summary$coefficients[6] に 2.699 が、summary$coefficients[8] に 0.00696が入っている