R/print.chowpretest.R

Defines functions print.chowpretest

#' @export

print.chowpretest <- function(x,...){
  cat("\nEmpirical Fluctuation Process: Multivariate Chow test\n\n")
  cat("From observation: ", x$from, "\n")
  cat("To observation: ", x$to, "\n")
  cat("Maximum break point test statistic:", max(x$teststat_bp, na.rm = TRUE), "at observation", which.max(x$teststat_bp), "\n")
  cat("Maximum sample split test statistic:", max(x$teststat_sp, na.rm = TRUE), "at observation", which.max(x$teststat_sp), "\n")
  cat("\n")


}

Try the svars package in your browser

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

svars documentation built on Feb. 16, 2023, 7:52 p.m.