powered by
summary method for class "td".
summary
# S3 method for td summary(object, ...)# S3 method for summary.td print( x, digits = max(3, getOption("digits") - 3), signif.stars = getOption("show.signif.stars"), ... )
# S3 method for summary.td print( x, digits = max(3, getOption("digits") - 3), signif.stars = getOption("show.signif.stars"), ... )
summary.td returns a list containing the summary statistics included in object, and computes the following additional statistics:
summary.td
object
number of low frequency observations
number of high frequency observations
empirical auto-correlation of the low frequency series
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".
print
"lm"
an object of class "td", usually, a result of a call to td().
"td"
td()
further arguments passed to or from other methods.
an object of class "summary.td", usually, a result of a call to summary.td.
"summary.td"
the number of significant digits to use when printing.
logical. If TRUE, 'significance stars' are printed for each coefficient.
TRUE
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)
Run the code above in your browser using DataLab