Summarizes a data.frame, somewhat differently than the normal summary function of R. The function is mainly useful as a basic EDA tool on data.frames before they are converted to tasks, but can be used on tasks as well.
Columns can be of type numeric, integer, logical, factor, or character. Characters and logicals will be treated as factors.
summarizeColumns(obj)
(data.frame | Task) Input data.
(data.frame). With columns:
Name of column.
Data type of column.
Number of NAs in column.
Measure of dispersion, for numerics and integers sd is used, for categorical columns the qualitative variation.
Mean value of column, NA for categorical columns.
Median value of column, NA for categorical columns.
MAD of column, NA for categorical columns.
Minimal value of column, for categorical columns the size of the smallest category.
Maximal value of column, for categorical columns the size of the largest category.
For categorical columns, the number of factor levels, NA else.
Other eda_and_preprocess:
capLargeValues()
,
createDummyFeatures()
,
dropFeatures()
,
mergeSmallFactorLevels()
,
normalizeFeatures()
,
removeConstantFeatures()
,
summarizeLevels()
# NOT RUN {
summarizeColumns(iris)
# }
Run the code above in your browser using DataLab