broom (version 0.3.7)

rlm_tidiers: Tidying methods for an rlm (robust linear model) object

Description

This method provides a glance of an "rlm" object. The tidy and augment methods are handled by lm_tidiers.

Usage

## S3 method for class 'rlm':
glance(x, ...)

Arguments

x
rlm object
...
extra arguments (not used)

Value

  • glance.rlm returns a one-row data.frame with the columns
  • sigmaThe square root of the estimated residual variance
  • convergedwhether the IWLS converged
  • logLikthe data's log-likelihood under the model
  • AICthe Akaike Information Criterion
  • BICthe Bayesian Information Criterion
  • deviancedeviance

See Also

lm_tidiers

Examples

Run this code
library(MASS)

r <- rlm(stack.loss ~ ., stackloss)
tidy(r)
augment(r)
glance(r)

Run the code above in your browser using DataLab