Skip to contents

Check if entry is not numeric

Usage

not.numeric(x)

Arguments

x

vector entry

Value

a boolean value to indicate if entry is numeric

Examples

not.numeric("45") # TRUE
#> [1] TRUE
not.numeric(45) # FALSE
#> [1] FALSE
if(not.numeric(45)) message("yes") # yes