Skip to content

❗ This is a read-only mirror of the CRAN R package repository. ggplot.multistats — Multiple Summary Statistics for Binned Stats/Geometries. Homepage: https://github.com/flying-sheep/ggplot.multistats Report bugs for this package: https://github.com/flying-sheep/ggplot.multistats/issues

Notifications You must be signed in to change notification settings

cran/ggplot.multistats

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRAN badge Workflow badge

ggplot.multistats

ggplot.multistats currently provides stat_summaries_hex and some helpers.

stat_summaries_hex is similar to ggplot2::stat_summary_hex, but allows specifying multiple stats using the funs parameter (see Example).

Installation

ggplot.multistats is on CRAN.

install.packages('ggplot.multistats')

You can also install the development version from GitHub:

# install.packages('devtools')
devtools::install_github('flying-sheep/ggplot.multistats')

Example

Specify a summary variable using the z aesthetic and specify a list of funs to provide after_stats for you:

library(ggplot2)
library(ggplot.multistats)

ggplot(iris, aes(Sepal.Width, Sepal.Length)) +
  stat_summaries_hex(
    aes(z = Petal.Width, fill = after_stat(median), alpha = after_stat(n)),
    funs = c('median', n = 'length'),
    bins = 5
  )

About

❗ This is a read-only mirror of the CRAN R package repository. ggplot.multistats — Multiple Summary Statistics for Binned Stats/Geometries. Homepage: https://github.com/flying-sheep/ggplot.multistats Report bugs for this package: https://github.com/flying-sheep/ggplot.multistats/issues

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages