fastglm (version 0.0.1)

summary.fastglm: summary method for fastglm fitted objects

Description

summary method for fastglm fitted objects

Usage

# S3 method for fastglm
summary(object, dispersion = NULL, ...)

Arguments

object

fastglm fitted object

dispersion

the dispersion parameter for the family used. Either a single numerical value or NULL (the default), when it is inferred from object.

...

not used

Value

a summary.fastglm object

Examples

Run this code
# NOT RUN {
x <- matrix(rnorm(10000 * 10), ncol = 10)
y <- 1 * (0.25 * x[,1] - 0.25 * x[,3] > rnorm(10000))

fit <- fastglm(x, y, family = binomial())

#summary(fit)


# }

Run the code above in your browser using DataLab