DiscreteDistribution {WVPlots} | R Documentation |
Plot distribution of a single discrete numerical variable.
Description
Similar to calling ClevelandDotPlot
with sort = 0
on a numerical x variable that
takes on a discrete set of values.
Usage
DiscreteDistribution(frm, xvar, title, ..., stem = TRUE, color = "black")
Arguments
frm |
data frame to get values from |
xvar |
numeric: name of the variable whose distribution is to be plotted |
title |
title to place on plot |
... |
no unnamed argument, added to force named binding of later arguments. |
stem |
if TRUE add whisker/stems to plot |
color |
color of points and stems |
Examples
if (requireNamespace('data.table', quietly = TRUE)) {
# don't multi-thread during CRAN checks
data.table::setDTthreads(1)
}
frmx = data.frame(x = rbinom(1000, 20, 0.5))
WVPlots::DiscreteDistribution(frmx, "x","Discrete example")
[Package WVPlots version 1.3.8 Index]