umx (version 1.9.1)

umx_is_numeric: Check if variables in a dataframe are numeric

Description

Checks across columns of a dataframe, return a vector of TRUE and FALSE, or, if all ==TRUE, a single binary (the default).

Usage

umx_is_numeric(df, all = TRUE)

Arguments

df

A dataframe to check

all

Whether to return a single all() Boolean or each column individually.

Value

- Boolean or Boolean vector

References

- https://github.com/tbates/umx, https://tbates.github.io

See Also

- umx_is_class

Other Miscellaneous Functions: install.OpenMx, umx_get_options, umx_is_class, umx_open_CRAN_page, umx_pad, xmu_twin_check

Examples

Run this code
# NOT RUN {
umx_is_numeric(mtcars) # TRUE
umx_is_numeric(mtcars, all=FALSE) # vector of TRUE
# }

Run the code above in your browser using DataCamp Workspace