| ggally_facethist {GGally} | R Documentation |
Make histograms by displaying subsets of the data in different panels.
ggally_facethist(data, mapping, ...)
data |
data set using |
mapping |
aesthetics being used |
... |
parameters sent to stat_bin() |
Barret Schloerke schloerke@gmail.com
data(tips, package = "reshape") ggally_facethist(tips, mapping = ggplot2::aes(x = tip, y = sex)) ggally_facethist(tips, mapping = ggplot2::aes_string(x = "tip", y = "sex"), binwidth = 0.1)