inst/examples/R/data/graphics/bar_chart/barchart_example_ggplot.R

library("MASS") # for Boston Housing da
tab2 <- table(Boston$rad, Boston$chas)
library("ggplot2")
ggplot(Boston, aes(x=factor(rad))) + geom_bar()
sigbertklinke/shinyExample documentation built on May 26, 2019, 4:32 a.m.