isEveryNumeric: Checks whether all objects are numeric

View source: R/0helpers.R

isEveryNumericR Documentation

Checks whether all objects are numeric

Description

Checks whether all objects are numeric

Usage

isEveryNumeric(...)

Arguments

...

objects that need testing

Value

Returns TRUE if all objects are numeric, returns FALSE otherwise

Examples

x <- 1
y <- 2
z <- "3"

isEveryNumeric(x, y)
isEveryNumeric(x, y, z)

AlexanderLyNL/bstats documentation built on Sept. 11, 2023, 4:10 p.m.