Description Usage Arguments Details Value Author(s) See Also Examples
Test whether argument is numeric or a data.frame with numeric columns.
1 | isNumeric(x)
|
x |
any object |
This function is used to check the validity of arguments for numeric functions. It is an attempt to emulate the behavior of internal generic math functions.
isNumeric
differs from is.numeric
in that data.frames with all columns numeric are accepted as numeric.
TRUE
or FALSE
Gordon Smyth
1 2 3 4 5 | isNumeric(3)
isNumeric("a")
x <- data.frame(a=c(1,1),b=c(0,1))
isNumeric(x) # TRUE
is.numeric(x) # FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.