-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathggplot-duobrand-echo.qmd
More file actions
74 lines (64 loc) · 1.86 KB
/
ggplot-duobrand-echo.qmd
File metadata and controls
74 lines (64 loc) · 1.86 KB
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
68
69
70
71
72
73
74
---
title: "knitr dark mode - ggplot"
brand:
light: united-brand.yml
dark: slate-brand.yml
execute:
echo: false
warning: false
_quarto:
tests:
html:
ensureHtmlElements:
-
- 'body.quarto-light'
- 'div.cell div.light-content'
- 'div.cell div.dark-content'
- 'div.cell div.cell-code pre.code-with-copy'
- []
ensureFileRegexMatches:
-
- 'united_theme <span class="sc">\+</span> colour_scale'
- 'slate_theme <span class="sc">\+</span> colour_scale'
- []
---
```{r}
#| echo: false
#| warning: false
library(ggplot2)
ggplot_theme <- function(bgcolor, fgcolor) {
theme_minimal(base_size = 11) %+%
theme(
panel.border = element_blank(),
panel.grid.major.y = element_blank(),
panel.grid.minor.y = element_blank(),
panel.grid.major.x = element_blank(),
panel.grid.minor.x = element_blank(),
text = element_text(colour = fgcolor),
axis.text = element_text(colour = fgcolor),
rect = element_rect(colour = bgcolor, fill = bgcolor),
plot.background = element_rect(fill = bgcolor, colour = NA),
axis.line = element_line(colour = fgcolor),
axis.ticks = element_line(colour = fgcolor)
)
}
brand_ggplot <- function(brand_yml) {
brand <- yaml::yaml.load_file(brand_yml)
ggplot_theme(brand$color$background, brand$color$foreground)
}
united_theme <- brand_ggplot("united-brand.yml")
slate_theme <- brand_ggplot("slate-brand.yml")
colour_scale <- scale_colour_manual(values = c("darkorange", "purple", "cyan4"))
```
### with crossref but no caption
and `echo: true`
::: {#fig-ggplot}
```{r}
#| echo: true
#| renderings: [light, dark]
ggplot(mtcars, aes(mpg, disp)) +
geom_point(aes(colour = factor(cyl))) + united_theme + colour_scale
ggplot(mtcars, aes(mpg, disp)) +
geom_point(aes(colour = factor(cyl))) + slate_theme + colour_scale
```
:::