an object of class "overview", usually, a result of a call to overview().
order_type
character. method of order of bars(variables).
typographic
logical. Whether to apply focuses on typographic elements to ggplot2 visualization.
The default is TRUE. if TRUE provides a base theme that focuses on typographic elements using hrbrthemes package.
base_family
character. The name of the base font family to use
for the visualization. If not specified, the font defined in dlookr is applied. (See details)
...
further arguments to be passed from or to other methods.
Details
The base_family is selected from "Roboto Condensed", "Liberation Sans Narrow",
"NanumSquare", "Noto Sans Korean". If you want to use a different font,
use it after loading the Google font with import_google_font().
# \donttest{ov <- overview(jobchange)
ov
summary(ov)
plot(ov)
# sort by name of variablesplot(ov, order_type = "name")
# sort by data type of variablesplot(ov, order_type = "type")
# }