Skip to content

aljrico/harrypotter

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
man
March 2, 2020 21:13
July 21, 2019 10:58
March 2, 2020 21:12
July 21, 2019 10:58
February 23, 2020 19:09
July 11, 2018 20:55
March 2, 2020 20:51
August 2, 2018 13:40
March 2, 2020 20:51
February 23, 2020 19:13
February 2, 2019 19:02
July 11, 2018 20:55
March 5, 2020 19:25
July 20, 2018 20:12
July 20, 2018 20:12

harrypotter

cran version rstudio mirror per-month downloads rstudio mirror total downloads

This package provides the first round of palettes derived from the Harry Potter film series.

At its first version, it simply contains the palettes of the Hogwarts Houses. They have been chosen manually, taking into account its consistency with all the existing branding of the franchise, but its suitability for data visualisation.

Most of us need to listen to the music to understand how beautiful it is. But often that’s how statistics are presented: we show the notes instead of playing the music.

The colour palette should be beautiful, useful for plotting data and shoulr relate to desired style; in this case, should relate to the Harry Potter world. Some of the colours might change in future versions, in order to find this balance between suitability for plotting and relatable to the Harry Potter universe.

Installation

Just copy and execute this bunch of code and you'll have the last version of the package installed:

install.packages("harrypotter")

And you can now use it:

library(harrypotter)

Usage

The default colour scale of the package is the one named Always. If you prefer to choose another one, you'll need to specify which house you want the palette from.

You can get started using base R plot functions, and the hp() function. Its first argument n lets you set the number of colours to be mapped. This way you can set different resolutions. Let's say that you want a palette made from the house Gryffindor, then just type option = "Gryffindor".

pal <- hp(n = 8, house = "Gryffindor")
image(volcano, col = pal)

pal <- hp(n = 128, house = "Gryffindor")
image(volcano, col = pal)

ggplot2

Of course, this package has specific functions to behave seamlessly with the best data visiualisation library available. The package contains colour scale functions for ggplot2 plots: scale_colour_hp() and scale_fill_hp().

Here is a made up example using the colours from the house of Hufflepuff,

library(ggplot2)
ggplot(data.frame(x = rnorm(1e4), y = rnorm(1e4)), aes(x = x, y = y)) +
  geom_hex() + 
	coord_fixed() +
  scale_fill_hp(house = "hufflepuff") + 
	theme_bw()

or more made-up heatmaps:

Using the same function we can also plot these cloropleth maps of U.S. unemployment:

Discrete Scales

But what if you want discrete scales? These functions also can be used for discrete scales with the argument discrete = TRUE. This argument, when TRUE, sets a finite number of sufficiently spaced colours within the selected palette to plot your data.

ggplot(diamonds, aes(factor(color), fill=factor(cut))) +
	geom_bar(colour = "black") +
	scale_fill_hp(discrete = TRUE, option = "ronweasley2", name = "Cut") +
	ylab("") +
	xlab("Colour") +
	coord_flip()

You can also use discrete scales by adding _d() at the end of it instead, like scale_fill_hp_d().

dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
ggplot(dsamp, aes(carat, price)) +
	geom_point(aes(colour = clarity)) +
	scale_colour_hp_d(option = "LunaLovegood", name = "Clarity") +
	xlab("Carat") +
	ylab("Price")

Don't forget to try them all.

Palettes

option = "Mischief"


option = "Always"


option = "Sprout"


option = "LunaLovegood"


option = "HermioneGranger"


option = "HarryPotter"


option = "DracoMalfoy"


option = "RonWeasley"


option = "NewtScamander"


option = "Ravenclaw"

Acknowledgments

  • Special thanks to my buddy Alfredo for designing the logo.