Learn R Programming

seasonal (version 0.40.0)

summary.seas: Summary of a X13-ARIMA-SEATS seasonal adjustment

Description

summary method for class "seas".

Usage

## S3 method for class 'seas':
summary(object, ...)

## S3 method for class 'summary.seas': print(x, digits = max(3, getOption("digits") - 3), signif.stars = getOption("show.signif.stars"), ...)

Arguments

object
an object of class "seas", usually, a result of a call to seas.
x
an object of class "summary.seas", usually, a result of a call to summary.seas.
digits
the number of significant digits to use when printing.
signif.stars
logical. If TRUE, 'significance stars' are printed for each coefficient.
...
further arguments passed to or from other methods.

Value

  • summary.seas returns a list containing the summary statistics included in object, and computes the following additional statistics:
  • coefficientsa named matrix containing coefficients, standard deviations, t-values and p-values
  • transformcharacter string with the type of intial transformation
  • The print method prints the summary output in a similar way as the method for "lm".

Examples

Run this code
x <- seas(AirPassengers)
summary(x)

Run the code above in your browser using DataLab