R/coef.geovol.R

coef.geovol <- function (object, as.zoo = TRUE, ...)
{
  
  results <- NULL
  if (as.zoo == TRUE) {
    object$x <- zoo(object$x)
    object$s <- zoo(object$s)
  }
  results$x <- object$x
  results$s <- object$s
  return(results)
  
}

Try the geovol package in your browser

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

geovol documentation built on July 9, 2021, 9:09 a.m.