inspect_smap {cleandata} | R Documentation |
A simplified thus faster version of inspect_map
.
inspect_smap(x, message = TRUE)
x |
The data frame |
message |
Whether print the process. |
A list of factor_cols
(vector), num_cols
(vector), char_cols
(vector), ordered_cols
(vector), and other_cols
(vector).
|
a vector, in which are the names of the factorial columns. |
|
a vector, in which are the names of the numerical columns. |
|
a vector, in which are the names of the string columns. |
|
a vector, in which are the names of the ordered factorial columns. |
|
a vector, in which are the names of the other columns. |
# building a data frame A <- as.factor(c('x', 'y', 'z')) B <- as.ordered(c('z', 'x', 'y')) C <- as.factor(c('y', 'z', 'x')) D <- as.factor(c('i', 'j', 'k')) E <- 5:7 df <- data.frame(A, B, C, D, E) # inspection dmap <- inspect_smap(df) summary(dmap) print(dmap)