plot_dots | R Documentation |
This is a simplified and customized version of graphics::dotchart()
.
plot_dots(
x,
xlim = c(0, max(x)),
main = "Dotchart",
xlab = "Frequency",
col = palette.colors(2L)[2L],
pch = 19L
)
x |
|
xlim |
|
main |
|
xlab |
|
col |
|
pch |
|
nothing, used for its side-effects (plotting).
graphics::dotchart()
x <- c(Foo = 3, Bar = 5)
plot_dots(x, xlim = c(0, 8))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.