ggally_facethist {GGally}R Documentation

Plots the Histograms by Faceting

Description

Make histograms by displaying subsets of the data in different panels.

Usage

ggally_facethist(data, mapping, ...)

Arguments

data

data set using

mapping

aesthetics being used

...

parameters sent to stat_bin()

Author(s)

Barret Schloerke schloerke@gmail.com

Examples

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)

[Package GGally version 0.5.0 Index]