checkVectLength: Check length of vector
Description
checkVectLength
checks argument 'x' for expected length 'expeL' and return either message or error when expectation not met.
May be used for parameter ('sanity') checking in other user front-end functions.
Usage
checkVectLength(
x,
expeL = 1,
stopOnProblem = FALSE,
silent = FALSE,
debug = FALSE,
callFrom = NULL
)
Value
This function returns NULL
; it produces either error-message if length is not OK or optional message if length is OK
Arguments
- x
(numeric or charcter vector) input to check length
- expeL
(numeric) expected length
- stopOnProblem
(logical) continue on problems with message or stop (as error message)
- silent
(logical) suppress messages
- debug
(logical) display additional messages for debugging
- callFrom
(character) allow easier tracking of message(s) produced
Examples
Run this codeaa <- 1:5; checkVectLength(aa,exp=3)
Run the code above in your browser using DataLab