R/Years.Months.Days.POSIXt.R

Defines functions Years.Months.Days.POSIXt

Years.Months.Days.POSIXt <- function(x, sep = "-") {

    paste(years(x), format(x, '%m'), days(x), sep = sep)
}
John-R-Wallace/R-ToolBox documentation built on July 2, 2024, 8:37 p.m.