Learn R Programming

spmodel (version 0.10.0)

summary.spmodel: Summarize a fitted model object

Description

Summarize a fitted model object.

Usage

# S3 method for splm
summary(object, ...)

# S3 method for spautor summary(object, ...)

# S3 method for spglm summary(object, ...)

# S3 method for spgautor summary(object, ...)

Value

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

Arguments

object

A fitted model object from splm(), spautor(), spglm(), or spgautor().

...

Other arguments. Not used (needed for generic consistency).

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.

See Also

print.spmodel()

Examples

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

Run the code above in your browser using DataLab