Learn R Programming

dynamac (version 0.1.12)

summary.dynardl: Enable summary calls to dynardl model objects

Description

Enable summary calls to dynardl model objects

Usage

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

Value

A summary of the fitted ARDL model.

Arguments

object

a dynardl model

...

additional arguments in the generic summary call

Author

Soren Jordan and Andrew Q. Philips

Details

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

Examples

Run this code
# 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