Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliocamp/ggpercentogram
Create equal-area histograms with 'ggplot2'
https://github.com/eliocamp/ggpercentogram
Last synced: 20 days ago
JSON representation
Create equal-area histograms with 'ggplot2'
- Host: GitHub
- URL: https://github.com/eliocamp/ggpercentogram
- Owner: eliocamp
- License: other
- Created: 2023-07-23T22:16:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-23T22:16:53.000Z (over 1 year ago)
- Last Synced: 2024-08-03T23:23:39.453Z (3 months ago)
- Language: R
- Size: 10.7 KB
- Stars: 11
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# ggpercentogram
A percentogram is a histogram in which each bin has the same number of observations and is
drawn to have an equal area.## Installation
You can install the development version of ggpercentogram like so:
``` r
remotes::install_github("eliocamp/ggpercentogram")
```## Example
```{r example}
library(ggplot2)
library(ggpercentogram)
ggplot(diamonds, aes(carat)) +
geom_percentogram()
```