Learn R Programming

dttr2 (version 0.5.2)

dtt_complete: Complete

Description

Completes date/time vector.

Usage

dtt_complete(x, ...)

# S3 method for Date dtt_complete( x, from = min(x), to = max(x), units = "days", unique = TRUE, sort = TRUE, ... )

# S3 method for POSIXct dtt_complete( x, from = min(x), to = max(x), units = "seconds", unique = TRUE, sort = TRUE, ... )

# S3 method for hms dtt_complete( x, from = min(x), to = max(x), units = "seconds", unique = TRUE, sort = TRUE, ... )

Value

The completed date/time vector.

Arguments

x

A date/time vector.

...

Unused.

from

A date/time scalar of the start.

to

A date/time scalar of the end.

units

A string of the time units. The possible values are "secs", "minutes", "hours", "days" or "weeks".

unique

A flag specifying whether to only return unique values.

sort

A flag specifying whether to sort the vector.

Methods (by class)

  • dtt_complete(Date): Complete a Date sequence vector

  • dtt_complete(POSIXct): Complete a POSIXct sequence vector

  • dtt_complete(hms): Complete a hms sequence vector

See Also

Other complete: dtt_completed()

Examples

Run this code
dtt_complete(as.Date(c("2001-01-01", "2001-01-03", "2001-01-01")))

Run the code above in your browser using DataLab