round.PCICt {PCICt} | R Documentation |
round.PCICt
Description
Round PCICt objects to the nearest second/minute/hour/day
Usage
## S3 method for class 'PCICt'
round(x, digits = c("secs", "mins", "hours", "days"))
Arguments
x |
Dates to be rounded. |
digits |
Unit to round the dates to. |
Details
round.PCICt rounds the dates in the x
argument to the nearest
second/minute/hour/day, as specified by the poorly named digits
argument.
Value
The dates in x
, rounded to the nearest second/minute/hour/day.
See Also
Examples
## Convert strings to PCICt objects, on a 360 day calendar
x <- as.PCICt(c("1961-02-30 12:00:00", "1962-03-24 12:34:56"), cal="360")
## Round them to the nearest hour
x.hour <- round(x, "hours")
## Round them to the nearest day
x.day <- round(x, "days")
[Package PCICt version 0.5-4.4 Index]