Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daranzolin/compareBars
Simplify comparative bar charts :bar_chart:
https://github.com/daranzolin/compareBars
d3js data-visualization htmlwidgets rstats
Last synced: 3 months ago
JSON representation
Simplify comparative bar charts :bar_chart:
- Host: GitHub
- URL: https://github.com/daranzolin/compareBars
- Owner: daranzolin
- License: other
- Created: 2018-08-25T04:34:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-17T02:15:19.000Z (about 6 years ago)
- Last Synced: 2024-07-29T19:26:13.578Z (3 months ago)
- Topics: d3js, data-visualization, htmlwidgets, rstats
- Language: JavaScript
- Homepage:
- Size: 2.01 MB
- Stars: 30
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - daranzolin/compareBars - Simplify comparative bar charts :bar_chart: (JavaScript)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# compareBars
[![Travis build status](https://travis-ci.org/daranzolin/compareBars.svg?branch=master)](https://travis-ci.org/daranzolin/compareBars)
>"Less is more."
>"Simplify simplify."
![Alt Text](https://raw.githubusercontent.com/daranzolin/compareBars/master/inst/img/cbgif2.gif)
The goal of `compareBars` is to reduce the clutter of comparative bar charts.
## Installation
You can install compareBars from github with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("daranzolin/compareBars")
```## A simpler alternative
Consider the following bar charts:
```{r warning=FALSE, message=FALSE, eval=FALSE}
library(tidyverse)
library(gapminder)
library(patchwork)d <- gapminder %>%
filter(continent %in% c("Americas", "Europe")) %>%
group_by(continent, year) %>%
summarize(pop = sum(pop))p1 <- ggplot(d, aes(year, pop, fill = continent)) + geom_col()
p2 <- ggplot(d, aes(year, pop, fill = continent)) + geom_col(position = "dodge")p1 + p2 + plot_layout(ncol = 1)
```![cb1](inst/img/ggplots.png)
When did the total population of the Americas exceed the total population of Europe? With the top chart, you'd have to guess sometime between 1960 and 1980, but it's hard to tell at a glance. And while it's easier to tell with the second plot, the clarity comes at the sake of clutter.
`compareBars` offers a simpler, cleaner alternative with d3.js:
```{r eval=FALSE}
library(compareBars)
d %>%
spread(continent, pop) %>%
mutate(year = factor(year)) %>%
compareBars(year, Americas, Europe)
```![cb1](inst/img/compareBarstip.png)
Not only is the moment when the Americas' population exceeded Europe's immediately clear, but you also get a much better sense of the magnitude by year. Approximating this kind of chart with ggplot requires a great deal of reshaping and wizardry.
An interactive tooltip shows the magnitude of difference between the two levels.
## Other options
You can adjust the chart by adding axis labels, titles, subtitles, specifying your own fill colors, changing the label fonts, and even the bar orientation:
```{r eval=FALSE}
d %>%
spread(continent, pop) %>%
mutate(year = factor(year)) %>%
compareBars(year,
Americas,
Europe,
xLabel = "Population",
yLabel = "Year",
titleLabel = "Population, Europe and the Americas",
subtitleLabel = "1952-2007",
fontFamily = "Arial",
compareVarFill1 = "pink",
compareVarFill2 = "green",
orientation = "horizontal")
```![cb2](inst/img/compareBars2.png)
Note that you must reshape your data into a 'non-tidy' form.