summary.fastglm: 'summary()' method for 'fastglm' fitted objects

View source: R/fastglm-methods.R

summary.fastglmR Documentation

'summary()' method for 'fastglm' fitted objects

Description

'summary()' method for 'fastglm' fitted objects

Usage

## S3 method for class 'fastglm'
summary(
  object,
  dispersion = NULL,
  correlation = FALSE,
  symbolic.cor = FALSE,
  ...
)

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'.

correlation

logical; if 'TRUE', the correlation matrix of the estimated parameters is returned.

symbolic.cor

logical; if 'TRUE', print the correlations in a symbolic form (see 'symnum') rather than as numbers.

...

not used

Value

A 'summary.fastglm' object

See Also

[summary.glm()]

Examples

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)

fastglm documentation built on Aug. 27, 2026, 9:07 a.m.