R/make_data_frame.R

Defines functions make_data_frame

# internal function that overrides the defaults of `data.frame()`
make_data_frame <- function(...) {
    data.frame(..., check.rows = FALSE, check.names = FALSE, fix.empty.names = FALSE, stringsAsFactors = FALSE)
}
leeper/prediction documentation built on Jan. 1, 2020, 6:10 p.m.