summary.spmodel function

Summarize a fitted model object

Summarize a fitted model object

Summarize a fitted model object.

## S3 method for class 'splm' summary(object, ...) ## S3 method for class 'spautor' summary(object, ...) ## S3 method for class 'spglm' summary(object, ...) ## S3 method for class 'spgautor' summary(object, ...)

Arguments

  • object: A fitted model object from splm(), spautor(), spglm(), or spgautor().
  • ...: Other arguments. Not used (needed for generic consistency).

Returns

A list with several fitted model quantities used to create informative summaries when printing.

Details

summary() creates a summary of a fitted model object intended to be printed using print(). This summary contains useful information like the original function call, residuals, a coefficients table, a pseudo r-squared, and estimated covariance parameters.

Examples

spmod <- splm(z ~ water + tarp, data = caribou, spcov_type = "exponential", xcoord = x, ycoord = y ) summary(spmod)

See Also

print.spmodel()

  • Maintainer: Michael Dumelle
  • License: GPL-3
  • Last published: 2025-03-12