R/list-class.R

Defines functions detectFronts.list

Documented in detectFronts.list

#' @rdname detectFronts
#' @method detectFronts list
#' @export
detectFronts.list <- function(x, method = "BelkinOReilly2009",
                              intermediate = FALSE, ...){

  # Check arguments
  checkArgs_df_list(x = x)

  # Apply method
  x$z <- detectFronts(x = x$z, method = method, intermediate = intermediate,
                      checkPrevs = FALSE, ...)

  x
}

Try the grec package in your browser

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

grec documentation built on May 2, 2023, 9:11 a.m.