not.numeric {quickcode}R Documentation

Not numeric

Description

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
not.numeric(45) # FALSE
if(not.numeric(45)) message("yes") # yes


[Package quickcode version 0.8 Index]