round.PCICt | R Documentation |
Round PCICt objects to the nearest second/minute/hour/day
## S3 method for class 'PCICt' round(x, digits = c("secs", "mins", "hours", "days"))
x |
Dates to be rounded. |
digits |
Unit to round the dates to. |
round.PCICt rounds the dates in the x
argument to the nearest
second/minute/hour/day, as specified by the poorly named digits
argument.
The dates in x
, rounded to the nearest second/minute/hour/day.
trunc
## 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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.