print.ARIMA {UComp}R Documentation

print.ARIMA

Description

Prints an ARIMA object

Prints an ETS object

Prints a PTS object

Prints a TOBIT TETS object

Usage

## S3 method for class 'ARIMA'
print(x, ...)

## S3 method for class 'ETS'
print(x, ...)

## S3 method for class 'PTS'
print(x, ...)

## S3 method for class 'TETS'
print(x, ...)

Arguments

x

Object of class “TETS”.

...

Additional inputs to handle the way to print output.

Details

See help of ARIMA.

See help of ETS.

See help of PTS.

See help of TETS.

Author(s)

Diego J. Pedregal

See Also

ARIMA, ARIMAmodel, ARIMAvalidate,

ETS, ETSmodel, ETSvalidate, ETScomponents, ETSestim

PTS, PTSmodel, PTSvalidate, PTScomponents, PTSestim

TETS, TETSmodel, TETSvalidate, TETScomponents, TETSestim

Examples

## Not run: 
m1 <- ARIMAmodel(log(gdp))
print(m1)

## End(Not run)
## Not run: 
m1 <- ETSmodel(log(gdp))
print(m1)

## End(Not run)
## Not run: 
m1 <- PTSmodel(log(AirPassengers))
print(m1)

## End(Not run)
## Not run: 
m1 <- TETSmodel(log(gdp))
print(m1)

## End(Not run)

[Package UComp version 5.0.4 Index]