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/utilities.r

View File Source Download File No help file available

Function: IfElse

Function Description: IfElse

A more convenient version of the R function ifelse in cases where test, a, and b are atomic.

Function Arguments:

ArgumentDefault Value
test
a
b

Function Source:

IfElse=function(test,a,b)
{
if(test) return(a)
else return(b)
}