ggboxplots: A package for creating common variations of boxplots

Description References Examples

Description

This package brings a set of variations of boxplots to the ggplot2.framework. Implemented are vase plots, violin plots, and high density region plots. See ggvase, ggviolin and gghdr

References

benjamini hintze hyndman

Examples

1
2
3
4
5
6
require(ggplot2)
ggviolin(diamonds, cut, price, bandwidth=300, fill=cut) + scale_fill_brewer(palette="Set1")
gghdr(diamonds, cut, price, probs=c(50,25,12.5, 6.25), fill=cut) +
  scale_fill_brewer(palette="Set1") +
  scale_colour_brewer(palette="Set1")
ggvase(diamonds, cut, price, bandwidth=300, fill=cut) + scale_fill_brewer(palette="Set1")

heike/ggboxplots documentation built on May 17, 2019, 3:23 p.m.