对齐 ggplot y 轴标签沿着公共中线,在各个 facet 中。

huangapple go评论97阅读模式
英文:

Align ggplot y axis labels along common middle line, across facets

问题

当y轴标签长度不同时,element_text(hjust = .5) 会使标签在各个分面内以公共中线对齐,而不是在所有标签上对齐。

示例代码:

  1. library(tidyverse)
  2. t1 <- tibble(
  3. labs = c(
  4. "A short label",
  5. "Second short label",
  6. "This is a medium length label",
  7. "This is also a medium length",
  8. "Now, this label is actually quite long, really long",
  9. "This label is also actually quite long, really long"
  10. ) %>%
  11. fct_inorder %>%
  12. fct_rev,
  13. facs = str_c(
  14. "facet", 1:3
  15. ) %>%
  16. rep(each = 2),
  17. x = runif(6)
  18. )
  19. t1 %>%
  20. ggplot(
  21. aes(
  22. x, labs
  23. )
  24. ) +
  25. geom_point() +
  26. facet_grid(
  27. vars(facs),
  28. scales = "free_y"
  29. ) +
  30. labs(
  31. x = "",
  32. y = ""
  33. ) +
  34. theme(
  35. axis.text.y = element_text(hjust = .5)
  36. )

应该返回如下结果:

对齐 ggplot y 轴标签沿着公共中线,在各个 facet 中。

如何使y轴标签在公共轴上居中对齐?

英文:

When y-axis labels are of different length, element_text(hjust = .5) aligns the labels around a common middle line within facets, rather than across all the labels.

An example:

  1. library(tidyverse)
  2. t1 &lt;- tibble(
  3. labs = c(
  4. &quot;A short label&quot;,
  5. &quot;Second short label&quot;,
  6. &quot;This is a medium length label&quot;,
  7. &quot;This is also a medium length&quot;,
  8. &quot;Now, this label is actually quite long, really long&quot;,
  9. &quot;This label is also actually quite long, really long&quot;
  10. ) %&gt;%
  11. fct_inorder %&gt;%
  12. fct_rev,
  13. facs = str_c(
  14. &quot;facet&quot;, 1:3
  15. ) %&gt;%
  16. rep(each = 2),
  17. x = runif(6)
  18. )
  19. t1 %&gt;%
  20. ggplot(
  21. aes(
  22. x, labs
  23. )
  24. ) +
  25. geom_point() +
  26. facet_grid(
  27. vars(facs),
  28. scales = &quot;free_y&quot;
  29. ) +
  30. labs(
  31. x = &quot;&quot;,
  32. y = &quot;&quot;
  33. ) +
  34. theme(
  35. axis.text.y = element_text(hjust = .5)
  36. )

should return

对齐 ggplot y 轴标签沿着公共中线,在各个 facet 中。

How do I get the y-axis labels to be middle aligned along a common axis?

答案1

得分: 2

你可以将以下的 dplyr::mutate 添加到 tibble 中:mutate(labs = str_pad(labs, max(str_width(labs)), side = "both")),以在字符串上添加填充,使它们具有相同的视觉长度。

  1. library(tidyverse)
  2. t1 <- tibble(
  3. labs = c(
  4. "A short label",
  5. "Second short label",
  6. "This is a medium length label",
  7. "This is also a medium length",
  8. "Now, this label is actually quite long, really long",
  9. "This label is also actually quite long, really long"
  10. ) %>%
  11. fct_inorder() %>%
  12. fct_rev(),
  13. facs = str_c(
  14. "facet", 1:3
  15. ) %>%
  16. rep(each = 2),
  17. x = runif(6)
  18. ) %>%
  19. mutate(labs = str_pad(labs, max(str_width(labs)), side = "both"))
  20. t1 %>%
  21. ggplot(
  22. aes(
  23. x, labs
  24. )
  25. ) +
  26. geom_point() +
  27. facet_grid(
  28. vars(facs),
  29. scales = "free_y"
  30. ) +
  31. labs(
  32. x = "",
  33. y = ""
  34. ) +
  35. theme(
  36. axis.text.y = element_text(hjust = .5)
  37. )

对齐 ggplot y 轴标签沿着公共中线,在各个 facet 中。

创建于2023-07-17,使用 reprex v2.0.2

英文:

You could add the following dplyr::mutate to the tibble: mutate(labs = str_pad(labs, max(str_width(labs)), side = &quot;both&quot;)) to add padding to the strings so they all have the same apparent length.

  1. library(tidyverse)
  2. t1 &lt;- tibble(
  3. labs = c(
  4. &quot;A short label&quot;,
  5. &quot;Second short label&quot;,
  6. &quot;This is a medium length label&quot;,
  7. &quot;This is also a medium length&quot;,
  8. &quot;Now, this label is actually quite long, really long&quot;,
  9. &quot;This label is also actually quite long, really long&quot;
  10. ) %&gt;%
  11. fct_inorder %&gt;%
  12. fct_rev,
  13. facs = str_c(
  14. &quot;facet&quot;, 1:3
  15. ) %&gt;%
  16. rep(each = 2),
  17. x = runif(6)
  18. ) |&gt;
  19. mutate(labs = str_pad(labs, max(str_width(labs)), side = &quot;both&quot;))
  20. t1 %&gt;%
  21. ggplot(
  22. aes(
  23. x, labs
  24. )
  25. ) +
  26. geom_point() +
  27. facet_grid(
  28. vars(facs),
  29. scales = &quot;free_y&quot;
  30. ) +
  31. labs(
  32. x = &quot;&quot;,
  33. y = &quot;&quot;
  34. ) +
  35. theme(
  36. axis.text.y = element_text(hjust = .5)
  37. )

对齐 ggplot y 轴标签沿着公共中线,在各个 facet 中。<!-- -->

<sup>Created on 2023-07-17 with reprex v2.0.2</sup>

huangapple
  • 本文由 发表于 2023年7月17日 14:06:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/76701864.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定