| secondsToCtime {oce} | R Documentation |
Express Time Interval as Colon-Separated String
Description
Convert a time interval to a colon-separated string
Usage
secondsToCtime(sec)
Arguments
sec |
length of time interval in seconds. |
Value
A string with a colon-separated time interval.
Author(s)
Dan Kelley
See Also
See ctimeToSeconds(), the inverse of this.
Other things related to time:
ctimeToSeconds(),
julianCenturyAnomaly(),
julianDay(),
numberAsHMS(),
numberAsPOSIXct(),
unabbreviateYear()
Examples
library(oce)
cat(" 10 s = ", secondsToCtime(10), "\n", sep = "")
cat(" 61 s = ", secondsToCtime(61), "\n", sep = "")
cat("86400 s = ", secondsToCtime(86400), "\n", sep = "")
[Package oce version 1.8-2 Index]