dtt_date | R Documentation |
Coerces vectors to floored Date vectors.
dtt_date(x, ...)
dtt_date(x) <- value
## S3 method for class 'integer'
dtt_date(x, origin = as.Date("1970-01-01"), ...)
## S3 method for class 'double'
dtt_date(x, origin = as.Date("1970-01-01"), ...)
## S3 method for class 'character'
dtt_date(x, ...)
## S3 method for class 'Date'
dtt_date(x, ...)
## S3 method for class 'POSIXct'
dtt_date(x, ...)
## S3 method for class 'hms'
dtt_date(x, ...)
## S3 replacement method for class 'Date'
dtt_date(x) <- value
## S3 replacement method for class 'POSIXct'
dtt_date(x) <- value
dtt_set_date(x, value)
x |
A vector. |
... |
Unused. |
value |
A date vector. |
origin |
Origin date. |
A floored Date vector.
dtt_date(integer)
: Coerce integer vector to a floored Date vector
dtt_date(double)
: Coerce double vector to a floored Date vector
dtt_date(character)
: Coerce character vector to a floored Date vector
dtt_date(Date)
: Coerce Date vector to a floored Date vector
dtt_date(POSIXct)
: Coerce POSIXct vector to a floored Date vector
dtt_date(hms)
: Coerce hms vector to a floored Date vector
dtt_date(Date) <- value
: Set date values for a Date vector
dtt_date(POSIXct) <- value
: Set date values for a POSIXct vector
Other floor:
dtt_date_time()
,
dtt_excel_to_date()
,
dtt_floor()
,
dtt_floored()
,
dtt_set_time()
dtt_date(1L)
dtt_date(-1)
dtt_date("2000-01-01")
as.Date(as.POSIXct("2019-05-01", tz = "Etc/GMT-8"))
dtt_date(as.POSIXct("2019-05-01", tz = "Etc/GMT-8"))
dtt_date(hms::as_hms("23:59:59"))
dtt_date(hms::as_hms("24:00:00"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.