-
Notifications
You must be signed in to change notification settings - Fork 9
/
README.Rmd
68 lines (49 loc) · 1.93 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
output:
github_document
---
```{r,include=FALSE}
library(ochRe)
```
# Australia-themed Colour Palettes
Ochre is a brownish-yellow pigment that occurs naturally in soils across Australia. Historically, ochre has been used for artwork by many indigenous cultures, including the Aboriginal people of Australia.
The goal of `ochRe` is to provide colour palettes inspired by Australian art, landscapes and wildlife. The palettes can be used in conjunction with `ggplot2` or `plot` to provide colours to data plots.
There are `r length(ochre_palettes)` different palettes (at the moment!), each one based on an iconic Australian artwork, landscape or creature.
Some palettes are more suitable for displaying qualitative data, others will look fabulous used in sequential plots.
More information can be found in the vignette, including which palettes work best for those with impaired colour vision.
```r
# load the ochRe vignette
vignette("ochre")
```
## Installation
You can install `ochRe` from github with:
```r
# You need to install the 'devtools' package first
devtools::install_github("ropenscilabs/ochRe")
```
## The Palettes
```{r see_palettes, fig.height = 8}
pal_names <- names(ochre_palettes)
par(mfrow=c(length(ochre_palettes)/2, 2), lheight = 2, mar=rep(1, 4), adj = 0)
for (i in 1:length(ochre_palettes)){
viz_palette(ochre_palettes[[i]], pal_names[i])
}
```
## Example
This is a basic example of how to use the `namatjira_qual` palette in a plot.
```{r}
library(ochRe)
library(ggplot2)
ggplot(diamonds) + geom_bar(aes(x = cut, fill = clarity)) +
scale_fill_ochre()
```
In this example we use the `winmar` palette directly via the `colorRampPalette()` function (for the base plot connoisseurs).
```{r}
## basic example code
pal <- colorRampPalette(ochre_palettes[["winmar"]])
image(volcano, col = pal(20))
```
Individual palettes can be visualised using the viz_palette function
```{r}
viz_palette(ochre_palettes[["tasmania"]])
```