Convert a Numeric Time to Hour, Minute, and Second
See also
Other things related to time:
ctimeToSeconds(),
julianCenturyAnomaly(),
julianDay(),
numberAsPOSIXct(),
secondsToCtime(),
unabbreviateYear()
Examples
t <- c("0900", "1234")
numberAsHMS(t)
#> $hour
#> [1] 9 12
#>
#> $minute
#> [1] 0 34
#>
#> $second
#> [1] 0 0
#>