Topic: Utilities
Topic Description:
Basic R utilities used in many packages and functions, such as date and string manipulations, statistical distributions, geometry of lines and distances. The R package date is required for the two data functions.
File: utilities/utilitiesCTFS.r
| View File Source | Download File | No help file available |
Function: rndown5
Function Description: rndown5
Rounds a numeric value to the next lowest multiple of 5.Function Arguments:
| Argument | Default Value |
|---|---|
Function Source:
rndown5=function(s)
return(5*floor(s/5))
return(5*floor(s/5))