"lm" objects, the method for
"seas" objects returns the estimated coefficients, its standard errors,
z-statistics and corresponding (two-sided) p-values. Coefficients are returned
both for the exogenous regressors and the coefficients of the ARIMA model.## 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"), ...)
"seas", usually, a result of a
call to seas."summary.seas", usually, a result
of a call to summary.seas.TRUE, 'significance stars' are printed
for each coefficient.summary.seas returns a list containing the summary statistics
included in object, and computes the following additional
statistics:print method prints the summary output in a similar way as the
method for "lm".m <- seas(AirPassengers)
summary(m)Run the code above in your browser using DataLab