This function provides a simple interface to create a ggplot bar chart.
ggBarChart(vector, plotTheme = theme_bw(), ...)
| vector | The vector to display in the bar chart. |
|---|---|
| plotTheme | The theme to apply. |
| … | And additional arguments are passed to |
A ggplot plot is returned.
geom_bar
ggBarChart(mtcars$cyl);