get_float_columns.Rd
This function takes a data frame as input and returns the names of columns that contain numeric values and are not integer columns.
get_float_columns(data)
A data frame.
A character vector containing the names of numeric columns that are not integer columns.
data <- data.frame(a = 1:5, b = 1:5, c = 1L:5L)
SignalDetectionTool::get_float_columns(data)
#> character(0)