ArgumentCheck: Improved Argument Check Communication

Description Source Examples

Description

The typical process of checking arguments in functions is iterative. In this process, an error may be returned and the user may fix it only to receive another error on a different argument. 'ArgumentCheck 'facilitates a more helpful way to perform argument checks allowing the programmer to run all of the checks and then return all of the errors and warnings in a single message.

Source

The concepts of this package are heavily influenced by

Karafa, MT, "Building Better Macros: Basic Parameter Checking for Avoiding "ID10T" Errors. SAS Global Forum, 2011 http://support.sas.com/resources/papers/proceedings11/096-2011.pdf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## Not run: 
#* This example is taken from the discussion of argument checking at
#* http://www.r-bloggers.com/programming-with-r---checking-function-arguments/
cylinder.volume <- function(height, radius){
  ArgCheck <- newArgCheck()
  ArgumentCheck::addError(missing(height),
           "A value for 'height' was not provided",
           ArgCheck)
  ArgumentCheck::addError(ifelse(!missing(height), height < 0, FALSE),
           "'height' must be a non-negative number",
           ArgCheck)
  ArgumentCheck::addError(missing(radius),
           "A value for 'radius' was not provided",
           ArgCheck)
  ArgumentCheck::addError(ifelse(!missing(radius), radius < 0, FALSE),
           "'radius' must be a non-negative number",
           ArgCheck)

  ArgumentCheck::addWarning(ifelse(!missing(height) & !missing(radius),
                    height < radius, FALSE),
             "When 'height' < 'radius', you have a short, awkward looking cylinder",
             ArgCheck)

ArgumentCheck::finishArgCheck(ArgCheck)

volume <- pi * radius^2 * height
volume
}

cylinder.volume()
cylinder.volume(height = -3)
cylinder.volume(height = 3, radius = -2)
cylinder.volume(height = 3, radius=2)
cylinder.volume(height = -8, radius = 4)

## End(Not run)

ArgumentCheck documentation built on May 2, 2019, 9:15 a.m.