gpt4 book ai didi

r - 使用 atop() 时完全左对齐

转载 作者:行者123 更新时间:2023-12-04 13:58:36 27 4
gpt4 key购买 nike

使用 atop() 时如何完全左对齐文本?

library(tidyverse)

mtcars %>%
mutate(cyl = str_c("atop(bold(", cyl, "~long~text~on~the~top),(shorttext))")) %>%
ggplot(aes(hp, wt)) +
geom_line() +
facet_wrap(~cyl, labeller = label_parsed) +
theme(strip.text.x = element_text(hjust = 0))

最佳答案

现在我肯定会用奇妙的 ggtext 来回答这个问题。包裹

library(tidyverse)
library(ggtext)

mtcars %>%
mutate(cyl = str_c("**", cyl, " long text on the top**<br>(shorttext)")) %>%
ggplot(aes(hp, wt)) +
geom_line() +
facet_wrap(~cyl) +
theme(strip.text.x = element_markdown(hjust = 0))

创建于 2021-01-03 由 reprex package (v0.3.0)

关于r - 使用 atop() 时完全左对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56449477/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com