summary.dfm | R Documentation |
Summary and print methods for class 'dfm'. print.dfm
just prints basic model information and the factor transition matrix \textbf{A}
,
summary.dfm
returns all system matrices and additional residual and goodness of fit statistics - with a print method allowing full or compact printout.
## S3 method for class 'dfm'
print(x, digits = 4L, ...)
## S3 method for class 'dfm'
summary(object, method = switch(object$em.method, none = "2s", "qml"), ...)
## S3 method for class 'dfm_summary'
print(x, digits = 4L, compact = sum(x$info["n"] > 15, x$info["n"] > 40), ...)
x , object |
an object class 'dfm'. |
digits |
integer. The number of digits to print out. |
... |
not used. |
method |
character. The factor estimates to use: one of |
compact |
integer. Display a more compact printout: |
Summary information following a dynamic factor model estimation.
mod = DFM(diff(BM14_Q), 2, 3)
print(mod)
summary(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.