display
Display TSmodel arrays
Description
Display TSmodel arrays. (also accessed with the generic function print)
Usage
display(model, digits=4, L=T, fuzz=1e-10)
Required Arguments
- model
-
An object of class TSmodel or TSestModel.
Optional Arguments
- digits
-
the number of significant digits
- L
-
if T then ARMA model arrays are displayed as a polynomial matrix
with L indicating lags. Otherwise, each lag of the array is
displayed as a matrix.
- fuzz
-
ARMA model polynomial elements with absolute value less than fuzz
are not displayed (i.e.-as if they are zero)
Value
Side Effects
The model arrays are displayed.
BUGS
digits cannot be controlled for some numbers (e.g.- 1.0 is printed
as 0.9999999999)
Examples
display(model)
print(model)
return to Table of Contents