R/summarize.R
defaultCharacterSummaries.Rd
Default options for which summaries to apply on
character type variables in check
and makeDataReport
,
possibly user-modified by adding extra function names using add
or
removing default function names with remove
.
defaultCharacterSummaries(remove = NULL, add = NULL)
remove | Character vector of function names. Checks to remove from the returned vector |
---|---|
add | Character vector of function names. Checks to add to the returned vector |
A list of function names (as character strings).
#remove "variableType" from the summaries: defaultCharacterSummaries(remove = "variableType")#> [1] "countMissing" "uniqueValues" "centralValue"