Learn R Programming

pdolsms (version 0.2)

print.pdols: A print method for the pdols class

Description

A print method for the pdols class

Usage

"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.

Examples

Run this code
data("marksul2003")
result <- pdols(formula = Y ~ X + Z - 1,
                index = c("Country", "Year"),
                data = marksul2003,
                p = 2,
                icase = "constant")
print(result)

Run the code above in your browser using DataLab