R/arima_no_warn.R

Defines functions arima_no_warn

#ARIMA Function Wrapper Without Warnings
#
#For internal use only.

arima_no_warn <- function(xt, order = c(0L, 0L, 0L), include.mean = FALSE) {
  suppressWarnings(stats::arima(xt, order = order, include.mean = include.mean))
}

Try the deseats package in your browser

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

deseats documentation built on Sept. 11, 2024, 8:24 p.m.