#' Functions that have been renamed, superseded, or are no longer working
#'
#' `r lifecycle::badge("deprecated")`
#' @name defunct
#' @keywords internal
NULL
#' @describeIn defunct Deprecated on 2022-05-17.
#' This wrapper function is deprecated and its functionality is included in the
#' original `make_messydates()` function. Please refer to its documentation
#' for more details about the new implementation.
#' @export
standardise_dates <- function(...) {
.Defunct(msg = "This function has been removed in {manypkgs} v.0.2.2,
please use messydates::as_messydate() directly when passing one date varible (e.g. ymd) or
messydates::make_messydate() when passing three (e.g. yyyy, mm, dd) variables.")
dots <- list(...)
if (length(dots) == 1) {
x <- messydates::as_messydate(...)
} else if (length(dots) == 3) {
x <- messydates::make_messydate(...)
}
x
}
#' @describeIn defunct Deprecated on 2022-05-17.
#' This wrapper function is deprecated and its functionality is included in the
#' original `make_messydates()` function. Please refer to its documentation
#' for more details about the new implementation.
#' @export
standardize_dates <- standardise_dates
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.