Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonocarroll/ggshape
Arrange 'ggplot' facets in arbitrary shapes
https://github.com/jonocarroll/ggshape
Last synced: 15 days ago
JSON representation
Arrange 'ggplot' facets in arbitrary shapes
- Host: GitHub
- URL: https://github.com/jonocarroll/ggshape
- Owner: jonocarroll
- Created: 2017-07-10T14:08:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-10T14:39:25.000Z (over 7 years ago)
- Last Synced: 2024-10-12T21:26:57.509Z (about 1 month ago)
- Language: R
- Size: 908 KB
- Stars: 80
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ggshape
[![Travis-CI Build Status](https://travis-ci.org/jonocarroll/ggshape.svg?branch=master)](https://travis-ci.org/jonocarroll/ggshape)
Arrange `facet`-like `ggplot` plots in a pre-defined, non-grid shape.
## Installation
``` r
devtools::install_github("jonocarroll/ggshape")
```## Examples
The original motivation for this package was to arrange facets off-center, such as
``` r
plot_triangle(letters[1:19], ggshape_random_walk,
nrow = 5, user_scale = "3cm", gap_size = 0.2,
point = "top")
```
![](man/figures/random_triangle_up.png)The plotting function is entirely user-specified, so it can be replaced with any other `ggplot` call
``` r
plot_triangle(letters[1:19], ggshape_lang_diffs,
nrow = 5, user_scale = "3cm", gap_size = 0.2,
point = "top")
```
![](man/figures/languages_triangle_up.png)The placement in the triangle is entirely procedural, so it works for any number of rows
``` r
plot_triangle(1:32, ggshape_rainbow_text,
nrow = 6, user_scale = "3cm", gap_size = 0.2,
point = "top")
```
![](man/figures/rainbow_nums_triangle_up_32.png)Another pre-defined pattern of interest may be useful for text analysis
``` r
plot_keyboard(ggshape_lang_diffs)
```
![](man/figures/languages.png)``` r
plot_keyboard(ggshape_english_usage)
```
![](man/figures/english.png)## Ideas
- more shapes!
- maps!