R/summary.GNARfit.R

Defines functions summary.GNARfit

Documented in summary.GNARfit

summary.GNARfit <- function(object, ...){
  dotarg <- list(...)
  if(length(dotarg)!=0){
    if(!is.null(names(dotarg))){
      warning("... not used here, input(s) ", paste(names(dotarg), collapse=", "), " ignored")
    }else{
      warning("... not used here, input(s) ", paste(dotarg, collapse=", "), " ignored")
    }
  }
  print(summary(object$mod))
  cat("GNAR BIC:", BIC.GNARfit(object))
}

Try the GNAR package in your browser

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

GNAR documentation built on April 28, 2023, 1:12 a.m.