R/summary.ardl.R

Defines functions summary.qardl

Documented in summary.qardl

#' Summary of a ardl model
#'
#' \code{summary} method for a \code{\link{qardl}} model.
#'
#' @param object is the object of the function
#' @param ... not used
#'
#' @return an object of the S3 class \code{summary.qardl} with the
#' following components:
#'
#' @importFrom stats printCoefmat
#' @rdname summary.qardl
#' @name summary.qardl
#' @export
summary.qardl<-function(object,...)
{
  cat("==============================================================\n")
  print(object$sels)
  cat("==============================================================\n")
  cat("\nLong-run coefficients\n")
  printCoefmat(object$lres,has.Pvalue = TRUE,signif.stars = TRUE)
  cat("==============================================================\n")
}

Try the Qardl package in your browser

Any scripts or data that you put into this service are public.

Qardl documentation built on Jan. 7, 2023, 1:24 a.m.