print.pdols: A print method for the pdols class

Description Usage Arguments References Examples

View source: R/pdols.R

Description

A print method for the pdols class

Usage

1
2
3
## S3 method for class 'pdols'
print(x, type = c("ordinary", "cte"), digits = max(3L,
  getOption("digits") - 3L), ...)

Arguments

x

An object of class pdols

type

The type of coefficient to return. Either ordinary dols ("ordinar") or common time effects ("cte")

digits

The number of digits to display when printing the coefficients.

...

Further arguments passed to or from other methods.

References

Mark, N. C. and Sul, D. (2003), Cointegration Vector Estimation by Panel DOLS and Long-run Money Demand. Oxford Bulletin of Economics and Statistics, 65: 655-680. <DOI:10.1111/j.1468-0084.2003.00066.x>

Examples

1
2
3
4
5
6
7
data("marksul2003")
result <- pdols(formula = Y ~ X + Z - 1,
                index = c("Country", "Year"),
                data = marksul2003,
                p = 2,
                icase = "constant")
print(result)

pdolsms documentation built on May 29, 2017, 12:36 p.m.

Related to print.pdols in pdolsms...