Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flying-sheep/ggplot.multistats

Multiple Summary Statistics for Binned Stats/Geometries
https://github.com/flying-sheep/ggplot.multistats

ggplot2 ggplot2-geom r statistics

Last synced: 2 months ago
JSON representation

Multiple Summary Statistics for Binned Stats/Geometries

Awesome Lists containing this project

README

        

[![CRAN badge][]](https://cran.r-project.org/package=ggplot.multistats) [![Workflow badge][]](https://github.com/flying-sheep/ggplot.multistats/commits/master)

[CRAN badge]: https://www.r-pkg.org/badges/version/ggplot.multistats
[Workflow badge]: https://github.com/flying-sheep/ggplot.multistats/workflows/Build%20R%20package/badge.svg

ggplot.multistats
=================

`ggplot.multistats` currently provides `stat_summaries_hex` and some helpers.

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

[stat_summary_2d]: https://ggplot2.tidyverse.org/reference/stat_summary_2d.html

Installation
------------
`ggplot.multistats` is on [CRAN](https://CRAN.R-project.org).

```r
install.packages('ggplot.multistats')
```

You can also install the development version from GitHub:

```r
# 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_stat`s for you:

```r
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
)
```

![](example.png)