R/fillDateGaps.Date.R

Defines functions fillDateGaps.Date

#' S3 Method for filling date times in a Date vector
#'
#' @param date.vector A vector of Date values
#' @param interval.days Target interval between two values in days
#' @export
#'
fillDateGaps.Date <- function(date.vector,
                              interval.days = calculateMainInterval(
                                date.vector
                              )) {
  .Deprecated("MyUtilities::fillGaps")
  fillDateGaps.POSIXct(date.vector, interval.days)
}
Sumpfohreule/MyUtilities documentation built on July 1, 2022, 1:21 a.m.