dtt_complete | R Documentation |
Completes date/time vector.
dtt_complete(x, ...)
## S3 method for class 'Date'
dtt_complete(
x,
from = min(x),
to = max(x),
units = "days",
unique = TRUE,
sort = TRUE,
...
)
## S3 method for class 'POSIXct'
dtt_complete(
x,
from = min(x),
to = max(x),
units = "seconds",
unique = TRUE,
sort = TRUE,
...
)
## S3 method for class 'hms'
dtt_complete(
x,
from = min(x),
to = max(x),
units = "seconds",
unique = TRUE,
sort = TRUE,
...
)
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. |
The completed date/time vector.
dtt_complete(Date)
: Complete a Date sequence vector
dtt_complete(POSIXct)
: Complete a POSIXct sequence vector
dtt_complete(hms)
: Complete a hms sequence vector
Other complete:
dtt_completed()
dtt_complete(as.Date(c("2001-01-01", "2001-01-03", "2001-01-01")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.