dtt_seq | R Documentation |
Creates a date/time sequence vector. from and to are first floored and then a sequence is created by units. If length_out is defined then that number of units are added to from.
dtt_seq(from, to, units, length_out = NULL, ...)
## S3 method for class 'Date'
dtt_seq(from, to = from, units = "days", length_out = NULL, ...)
## S3 method for class 'POSIXct'
dtt_seq(from, to = from, units = "seconds", length_out = NULL, ...)
## S3 method for class 'hms'
dtt_seq(
from,
to = from,
units = "seconds",
length_out = NULL,
wrap = TRUE,
...
)
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". |
length_out |
An integer of the number of units from from. |
... |
Unused. |
wrap |
A flag specifying whether to wrap hms vectors from 23:59:59 to 00:00:00 |
The date/time vector.
dtt_seq(Date)
: Create a Date sequence vector
dtt_seq(POSIXct)
: Create a POSIXct sequence vector
dtt_seq(hms)
: Create a hms sequence vector
dtt_seq(as.Date("2001-01-01"), as.Date("2001-01-05"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.