All Projects β†’ ewenme β†’ Ghibli

ewenme / Ghibli

Licence: other
Studio Ghibli colour palettes

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Ghibli

Ggpomological
πŸ‘ Pomological plot theme for ggplot2
Stars: ✭ 293 (+29.07%)
Mutual labels:  ggplot2, rstats, color-palette
Ggeconodist
πŸ“‰ Create Diminutive Distribution Charts
Stars: ✭ 53 (-76.65%)
Mutual labels:  ggplot2, rstats
Soccergraphr
Soccer Analytics in R using OPTA data
Stars: ✭ 42 (-81.5%)
Mutual labels:  ggplot2, rstats
Soccer ggplots
Soccer/football analytics blog posts & data viz from the World Cup, Premier League, Copa America, and beyond. Using ggplot2, ggsoccer, & more. (Est. June 2018) ****Please look at the README for best version of the code!****
Stars: ✭ 115 (-49.34%)
Mutual labels:  ggplot2, rstats
Ggrepel
πŸ“ Repel overlapping text labels away from each other.
Stars: ✭ 853 (+275.77%)
Mutual labels:  ggplot2, rstats
Ggcats
The geom you always wished for adding cats to ggplot2
Stars: ✭ 34 (-85.02%)
Mutual labels:  ggplot2, rstats
Ggbernie
A ggplot2 geom for adding Bernie Sanders to ggplot2
Stars: ✭ 96 (-57.71%)
Mutual labels:  ggplot2, rstats
R Color Palettes
Comprehensive list of color palettes available in r β€οΈπŸ§‘πŸ’›πŸ’šπŸ’™πŸ’œ
Stars: ✭ 708 (+211.89%)
Mutual labels:  rstats, color-palette
Complex Upset
A library for creating complex UpSet plots with ggplot2 geoms
Stars: ✭ 147 (-35.24%)
Mutual labels:  ggplot2, rstats
Patchwork
The Composer of ggplots
Stars: ✭ 2,002 (+781.94%)
Mutual labels:  ggplot2, rstats
Scico
Palettes for R based on the Scientific Colour-Maps
Stars: ✭ 202 (-11.01%)
Mutual labels:  rstats, color-palette
Geowaffle
Combining waffle plot with geofacet
Stars: ✭ 26 (-88.55%)
Mutual labels:  ggplot2, rstats
Tidymv
Tidy Model Visualisation for Generalised Additive Models
Stars: ✭ 25 (-88.99%)
Mutual labels:  ggplot2, rstats
Ggplot Courses
πŸ‘¨β€πŸ« ggplot2 Teaching Material
Stars: ✭ 40 (-82.38%)
Mutual labels:  ggplot2, rstats
Hrbrthemes
πŸ” Opinionated, typographic-centric ggplot2 themes and theme components
Stars: ✭ 899 (+296.04%)
Mutual labels:  ggplot2, rstats
Colormap
R package to generate colors from a list of 44 pre-defined palettes
Stars: ✭ 55 (-75.77%)
Mutual labels:  ggplot2, rstats
Calendr
Ready to print calendars with ggplot2
Stars: ✭ 161 (-29.07%)
Mutual labels:  ggplot2, rstats
Ggforce
Accelerating ggplot2
Stars: ✭ 640 (+181.94%)
Mutual labels:  ggplot2, rstats
Ggthemr
Themes for ggplot2.
Stars: ✭ 697 (+207.05%)
Mutual labels:  ggplot2, rstats
Gganimate
A Grammar of Animated Graphics
Stars: ✭ 1,744 (+668.28%)
Mutual labels:  ggplot2, rstats

ghibli

lifecycle CRAN status DLs Travis build Status

Overview

β€œNo matter how many weapons you have, no matter how great your technology might be, the world cannot live without love!” β€”Castle in the Sky (1986)

q◕‿‿◕q Sprinkle some Studio Ghibli palette magic over your plots q◕‿‿◕q

Installation

Install the latest stable version on CRAN…

install.packages('ghibli')

…or get the development version from GitHub.

# install package from github
remotes::install_github("ewenme/ghibli")

Palettes

ghibli provides 9 unique palettes, with a light, medium and dark variant for each.

# load package
library(ghibli)

# display palettes w/ names
par(mfrow=c(9,3))
for(i in names(ghibli_palettes)) print(ghibli_palette(i))

N.B. the palettes are exposed in YAML format for easier porting to new libraries.

All colour palettes are stored as color objects (courtesy of the prismatic package) inside ghibli_palettes with extremely cute printing (if crayon is installed) and plotting methods to help you preview flavours.

In the wild

ghibli provides relevant scales for use with ggplot2. It only suggests ggplot2 in order to stay lightweight, but if available you can use the scale_[colour|fill]_ghibli_[c|d]() functions:

library(ggplot2)

# ggplot stuff
ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
  geom_jitter(size = 3) +
  theme_minimal() +
  # ghibli stuff
  scale_colour_ghibli_d("LaputaMedium", direction = -1)

Other stuff

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].