Gets the smallest units for a date time vector. The possible values are 'seconds', 'minutes', 'hours', 'days', 'months' or 'years'.

dtt_units(x, ...)

# S3 method for Date
dtt_units(x, ...)

# S3 method for POSIXct
dtt_units(x, ...)

# S3 method for hms
dtt_units(x, ...)

Arguments

x

A Date, POSIXct or hms vector.

...

Unused.

Value

A string indicating the date time units.

Methods (by class)

  • dtt_units(Date): Get time units for a Date vector

  • dtt_units(POSIXct): Get time units for a POSIXct vector

  • dtt_units(hms): Get time units for a hms vector

See also

Examples

dtt_units(as.Date("2000-01-01"))
#> [1] "years"
dtt_units(as.Date("2000-02-01"))
#> [1] "months"
dtt_units(as.Date("2000-01-02"))
#> [1] "days"