Цвет в названии лоскутного шитья ggplots с использованием ggtext? - PullRequest
6 голосов
/ 06 мая 2020

Как можно дать лоскутку из ggplots красочное название с помощью ggtext?

Пример

Предположим, у нас есть четыре графика

library(ggplot2)
library(patchwork)
library(ggtext)

p1 <- ggplot(mtcars) + 
  geom_point(aes(mpg, disp)) + 
  ggtitle('Plot 1')

p2 <- ggplot(mtcars) + 
  geom_boxplot(aes(gear, disp, group = gear)) + 
  ggtitle('Plot 2')

p3 <- ggplot(mtcars) + 
  geom_point(aes(hp, wt, colour = mpg)) + 
  ggtitle('Plot 3')

p4 <- ggplot(mtcars) + 
  geom_bar(aes(gear)) + 
  facet_wrap(~cyl) + 
  ggtitle('Plot 4')

Их можно расположить следующим образом

patch <- (p1 + p2) / (p3 + p4)
patch

enter image description here

Пэчворк может иметь такое название

patch +
  plot_annotation(
  title = "Here is a regular title")

enter image description here

Одному ggplot можно дать красочное название, например, так

p1 +
  ggtitle("Here <span style='color:#953011;'><strong>is a colourful title</strong></span>") +
  theme(plot.title = element_markdown(lineheight = 1.1)) 

enter image description here

Как может пэчворк ggplots получают название красочный . Вот моя неудачная попытка

patch +
  plot_annotation(
  title = "Here<span style='color:#953011;'><strong>is a colourful title</strong></span>") +
  theme(plot.title = element_markdown(lineheight = 1.1)) 

enter image description here

1 Ответ

6 голосов
/ 06 мая 2020

plot_annotation имеет аргумент theme, поэтому вы можете сделать

#remotes::install_github("wilkelab/ggtext")
library(ggplot2)
library(patchwork)
library(ggtext)

patch <- (p1 + p2)

patch +
  plot_annotation(
    title = "Here <span style='color:#953011;'><strong>is a colourful title</strong></span>",
    theme = theme(plot.title = element_markdown(lineheight = 1.1)))

enter image description here

...