| summary.tfm | R Documentation |
Produces summary statistics for a fitted transfer function model including parameter estimates, standard errors, and diagnostic tests.
## S3 method for class 'tfm'
summary(
object,
y = NULL,
method = c("exact", "cond"),
digits = max(3L, getOption("digits") - 3L),
envir = parent.frame(),
...
)
object |
A fitted |
y |
Optional |
method |
Character: "exact" or "cond" for residual calculation. |
digits |
Number of significant digits for printing. |
envir |
Environment for evaluation. NULL uses calling environment. |
... |
Additional arguments:
|
Computes parameter estimates with standard errors (from Jacobian), z-statistics, p-values, AIC, BIC, log-likelihood, Ljung-Box tests (at lags p+q+1 and n/4+p+q), and Bartlett heteroscedasticity test.
Object of class summary.tfm containing: call, coefficient
table, variance-covariance matrix, residuals, diagnostic statistics,
information criteria, and time series attributes.
print.summary.tfm
## Not run:
data(seriesJ)
Y <- seriesJ$Y - mean(seriesJ$Y)
X <- seriesJ$X - mean(seriesJ$X)
umx <- um(X, ar = 3)
umy <- fit(umx, Y)
tfx <- tfest(Y, X, delay = 3, p = 2, q = 2, um.x = umx, um.y = umy)
tfmy <- tfm(Y, inputs = tfx, noise = um(ar = 2))
sm <- summary(tfmy)
print(sm)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.