Learn R Programming

kutils (version 0.93)

cleanDataFrame: Check and Clean data.frame for usage with variable key functions

Description

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.

Usage

cleanDataFrame(dframe, safeNumericToInteger = TRUE)

Arguments

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 safeInteger.

Value

A checked and cleaned data frame