#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.