dtt_minute_decimal: Get Decimal Minute Values

View source: R/minute-decimal.R

dtt_minute_decimalR Documentation

Get Decimal Minute Values

Description

Gets decimal minute values for date/time vectors.

Usage

dtt_minute_decimal(x, ...)

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

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

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

Arguments

x

A date/time vector.

...

Unused.

Value

A numeric vector.

Methods (by class)

  • dtt_minute_decimal(Date): Get numeric vector of decimal minute values for a Date vector

  • dtt_minute_decimal(POSIXct): Get numeric vector of decimal minute values for a POSIXct vector

  • dtt_minute_decimal(hms): Get numeric vector of decimal minute values for a hms vector

See Also

dtt_minute()

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

Examples

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

dttr2 documentation built on Nov. 14, 2023, 5:10 p.m.