print.TSestModel {dse1} | R Documentation |
Display TSmodel arrays.
print(x, digits=options()$digits) print(x, digits=options()$digits, L=T, fuzz=1e-10) print(x, ...)
x |
An object of class TSmodel or TSestModel. |
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) |
The object is returned invisibly.
BUG: digits cannot be controlled for some numbers (e.g.- 1.0 is printed as 0.9999999999)
if(is.R()) data("eg1.DSE.data.diff", package="dse1") model <- est.VARX.ls(eg1.DSE.data.diff) print(model)