not.numeric: Not numeric

View source: R/not.numeric.R

not.numericR 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


quickcode documentation built on April 4, 2026, 9:06 a.m.