Правильный подход заключается в использовании plot_annotation()
. Причина небольшого горизонтального разрыва по обе стороны надписи заключается в том, что поля графика все еще применяются к заголовку, как в обычном ggplot2. Если вы хотите избежать этого, вы должны установить поля графика на 0 и создать интервал, добавив соответствующие поля к заголовкам осей и т. Д. c.
# Library calls
library(tidyverse)
library(ggtext)
library(patchwork)
# make dummy figures
d1 <- runif(500)
d2 <- rep(c("Treatment", "Control"), each=250)
d3 <- rbeta(500, shape1=100, shape2=3)
d4 <- d3 + rnorm(500, mean=0, sd=0.1)
plotData <- data.frame(d1, d2, d3, d4)
p1 <- ggplot(data=plotData) + geom_point(aes(x=d3, y=d4)) +
theme(plot.background = element_rect(color='black'))
p2 <- ggplot(data=plotData) + geom_boxplot(aes(x=d2, y=d1, fill=d2))+
theme(legend.position="none") +
theme(plot.background = element_rect(color='black'))
p3 <- ggplot(data=plotData) +
geom_histogram(aes(x=d1, color=I("black"), fill=I("orchid"))) +
theme(plot.background = element_rect(color='black'))
p4 <- ggplot(data=plotData) +
geom_histogram(aes(x=d3, color=I("black"), fill=I("goldenrod"))) +
theme(plot.background = element_rect(color='black'))
fig_legend <- plot_annotation(
caption = "**Figure 1.** Testing Control vs. Treatment. A. Scatterplot.
B. The outcomes in the control arm were significantly better than
the Treatment Arm. C. Histogram. D. Another Histogram.",
theme = theme(
plot.caption = element_textbox_simple(
size = 11,
box.colour = "black",
linetype = 1,
padding = unit(c(3, 3, 3, 3), "pt"),
r = unit(0, "pt")
)
)
)
p1 + {
p2 + {
p3 +
p4 +
plot_layout(ncol=1)
}
} + fig_legend +
plot_layout(ncol=1)
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
Создано в 2020-02-09 пакетом представ. (v0.3.0)
На самом деле вы можете использовать отрицательные поля в заголовке для противодействия полям графика.
fig_legend <- plot_annotation(
caption = "**Figure 1.** Testing Control vs. Treatment. A. Scatterplot.
B. The outcomes in the control arm were significantly better than
the Treatment Arm. C. Histogram. D. Another Histogram.",
theme = theme(
plot.caption = element_textbox_simple(
size = 11,
box.colour = "black",
linetype = 1,
padding = unit(c(3, 3, 3, 3), "pt"),
margin = unit(c(0, -5.5, 0, -5.5), "pt"),
r = unit(0, "pt")
)
)
)
p1 + {
p2 + {
p3 +
p4 +
plot_layout(ncol=1)
}
} + fig_legend +
plot_layout(ncol=1)
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
Создано в 2020-02-09 пакетом Представить (v0.3.0)