Learn R Programming

GGally (version 2.2.1)

ggally_barDiag: Bar plot

Description

Displays a bar plot for the diagonal of a ggpairs plot matrix.

Usage

ggally_barDiag(data, mapping, ..., rescale = FALSE)

Arguments

data

data set using

mapping

aesthetics being used

...

other arguments are sent to geom_bar

rescale

boolean to decide whether or not to rescale the count output. Only applies to numeric data

Author

Barret Schloerke

Examples

Run this code
# Small function to display plots only if it's interactive
p_ <- GGally::print_if_interactive

data(tips)
p_(ggally_barDiag(tips, mapping = ggplot2::aes(x = day)))
p_(ggally_barDiag(tips, mapping = ggplot2::aes(x = tip), binwidth = 0.25))

Run the code above in your browser using DataLab