Learn R Programming

xtpqardl (version 1.0.1)

summary.xtpqardl: Summary Method for xtpqardl Objects

Description

Produces a detailed summary of Panel Quantile ARDL estimation results, including long-run coefficients, ECT speed of adjustment, half-life of adjustment, and short-run parameters by quantile.

Usage

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

Value

An object of class "summary.xtpqardl" containing formatted tables of results.

Arguments

object

An object of class "xtpqardl".

...

Additional arguments (currently unused).

Examples

Run this code
# \donttest{
data(pqardl_sample)
fit <- xtpqardl(
  formula = d_y ~ d_x1 + d_x2,
  data = pqardl_sample,
  id = "country",
  time = "year",
  lr = c("L_y", "x1", "x2"),
  tau = c(0.25, 0.50, 0.75)
)
summary(fit)
# }

Run the code above in your browser using DataLab