summary.td | R Documentation |
summary
method for class "td".
## S3 method for class 'td'
summary(object, ...)
## S3 method for class 'summary.td'
print(
x,
digits = max(3, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"),
...
)
object |
an object of class |
... |
further arguments passed to or from other methods. |
x |
an object of class |
digits |
the number of significant digits to use when printing. |
signif.stars |
logical. If |
summary.td
returns a list containing the summary statistics
included in object
, and computes the following additional
statistics:
n_l |
number of low frequency observations |
n |
number of high frequency observations |
ar_l |
empirical auto-correlation of the low frequency series |
coefficients |
a named matrix containing coefficients, standard deviations, t-values and p-values |
The print
method prints the summary output in a similar way as the method for "lm"
.
td()
for the main function for temporal disaggregation.
data(swisspharma)
mod1 <- td(sales.a ~ imports.q + exports.q)
summary(mod1)
mod2 <- td(sales.a ~ 0, to = "quarterly", method = "uniform")
summary(mod2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.