round: round.PCICt

round.PCICtR 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

trunc

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")

PCICt documentation built on Feb. 16, 2023, 7:43 p.m.

Related to round in PCICt...