Learn R Programming

dynamac (version 0.1.8)

summary.dynardl: Enable summary calls to dynardl model objects.

Description

Enable summary calls to dynardl model objects.

Usage

# S3 method for dynardl
summary(object, ...)

Arguments

object

a dynardl model

...

additional arguments in the generic summary call

Value

A summary of the fitted ARDL model.

Details

dynardl, by default, stores regression results in foo$model. This calls those results directly with summary.

Examples

Run this code
# NOT RUN {
# Using the ineq data from dynamac
ardl.model <- dynardl(concern ~ incshare10 + urate, data = ineq, 
       lags = list("concern" = 1, "incshare10" = 1),
       diffs = c("incshare10", "urate"), 
       lagdiffs = list("concern" = 1),
       ec = TRUE, simulate = FALSE)
summary(ardl.model)
# }

Run the code above in your browser using DataLab