plot.univar_category | R Documentation |
Visualize mosaics plot by attribute of univar_category class.
## S3 method for class 'univar_category'
plot(
x,
na.rm = TRUE,
prompt = FALSE,
typographic = TRUE,
base_family = NULL,
...
)
x |
an object of class "univar_category", usually, a result of a call to univar_category(). |
na.rm |
logical. Specifies whether to include NA when plotting bar plot. The default is FALSE, so plot NA. |
prompt |
logical. The default value is FALSE. If there are multiple visualizations to be output, if this argument value is TRUE, a prompt is output each time. |
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) |
... |
arguments to be passed to methods, such as graphical parameters (see par). However, it does not support all parameters. |
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().
univar_category
, print.univar_category
, summary.univar_category
.
library(dplyr)
# Calculates the all categorical variables
all_var <- univar_category(heartfailure)
# Print univar_category class object
all_var
smoking <- univar_category(heartfailure, smoking)
# Print univar_category class object
smoking
# plot all variables
plot(all_var)
# plot smoking
plot(smoking)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.