arlc_is_numeric_vector {arlclustering} | R Documentation |
Check if a Vector is Numeric
Description
This function checks if all elements of a vector are numeric.
Usage
arlc_is_numeric_vector(x)
Arguments
x |
A vector. |
Value
TRUE if all elements are numeric, FALSE otherwise.
Examples
arlc_is_numeric_vector(c(1, 2, 3))
arlc_is_numeric_vector(c(1, "a", 3))
[Package arlclustering version 1.0.5 Index]