info | R Documentation |
Extended summary information for a model fit. Currently linear and logistic regression models are supported.
info(x)
x |
an object of type |
info
is a generic S3 function providing detailed model information.
The goal is to provide more extensive information than currently
produced by summary
. See the related methods for
details.
A list
produced by info.lm
or
info.glm
.
info.lm
, info.glm
.
####################### # multiple regression # ####################### fit <- lm(mpg ~ hp + wt + accel + origin, data = auto_mpg) info(fit) ####################### # logistic regression # ####################### fit2 <- glm(caesarian ~ age + bp + delivery.time, family = binomial, data = caesarian) info(fit2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.