Learn R Programming

PCICt (version 0.5-4.4)

round.PCICt: round.PCICt

Description

Round PCICt objects to the nearest second/minute/hour/day

Usage

# S3 method for PCICt
round(x, digits = c("secs", "mins", "hours", "days"))

Value

The dates in x, rounded to the nearest second/minute/hour/day.

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.

See Also

Examples

Run this code
## 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")

Run the code above in your browser using DataLab