dtt_hour_decimal {dttr2}R Documentation

Get Decimal Hour Values

Description

Gets decimal hour values for date/time vectors.

Usage

dtt_hour_decimal(x, ...)

## S3 method for class 'Date'
dtt_hour_decimal(x, ...)

## S3 method for class 'POSIXct'
dtt_hour_decimal(x, ...)

## S3 method for class 'hms'
dtt_hour_decimal(x, ...)

Arguments

x

A date/time vector.

...

Unused.

Value

A numeric vector.

Methods (by class)

See Also

dtt_hour()

Other decimal: dtt_day_decimal(), dtt_doy_decimal(), dtt_minute_decimal(), dtt_month_decimal(), dtt_year_decimal()

Examples

x <- as.POSIXct("1990-01-02 23:40:51")
dtt_hour_decimal(x)
x <- hms::as_hms("23:40:51")
dtt_hour_decimal(x)

[Package dttr2 version 0.5.0 Index]