Learn R Programming

apt (version 1.0)

summary.ecm: Summary of Results from Error Correction Model

Description

This summarizes the main results from error correction models.

Usage

## S3 method for class 'ecm':
summary(object, digits=3, \dots)

Arguments

object
an object of class ecm from the function of ecmAsyFit or ecmSymFit.
digits
number of digits for rounding outputs
...
additional arguments to be passed.

Value

  • A data frame object with coefficients and related statistics by equation.

Details

This wraps up the coefficents and statistics from ECM by equation.

See Also

ecmSymFit and ecmAsyFit.

Examples

Run this code
data(daVi); data(daCh)
sem <- ecmSymFit(y=daVi, x=daCh, lag=4)
aem <- ecmAsyFit(y=daVi, x=daCh, lag=4, model="mtar", 
    split=TRUE, thresh=-0.451)
summary(sem)
summary(aem)

Run the code above in your browser using DataLab