powered by
`summary()` method for `fastglm` fitted objects
# S3 method for fastglm summary( object, dispersion = NULL, correlation = FALSE, symbolic.cor = FALSE, ... )
A `summary.fastglm` object
`fastglm` fitted object
the dispersion parameter for the family used. Either a single numerical value or `NULL` (the default), when it is inferred from `object`.
logical; if `TRUE`, the correlation matrix of the estimated parameters is returned.
logical; if `TRUE`, print the correlations in a symbolic form (see `symnum`) rather than as numbers.
not used
[summary.glm()]
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