Check and Clean data.frame for usage with variable key functions
Checks that the data.frame is made up of simple individual columns. Checks numeric columns to find out if they are acceptable to treat as integers. If they are acceptable to treat as integers, then convert those numeric to integer class variables.
cleanDataFrame(dframe, safeNumericToInteger = TRUE, trimws = "both")
dframe |
A data frame |
safeNumericToInteger |
Default TRUE: Should we treat values
which appear to be integers as integers? If a column is
numeric, it might be safe to treat it as an integer. In many
csv data sets, the values coded c(1, 2, 3) are really
integers, not floats c(1.0, 2.0, 3.0). See |
trimws |
Defaults as "both", in meaning of |
A checked and cleaned data frame
Paul Johnson <pauljohn@ku.edu>
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.