修剪离散变量的 ggplot 修改的雨云图中的空白空间。

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

Trim white space in ggplot modified raincloud plot with discrete variables

问题

I'm having difficulty trimming white space from the discrete axis of a ggplot. See reprex below - how can I remove the white space between the data for "large" and the x-axis? I've tried various versions of scale_x_discrete but it doesn't seem to have any effect.

  1. # Prepare data
  2. sample_data <- iris %>%
  3. filter(Species == "setosa" | Species == "virginica") %>%
  4. mutate(category = case_when(Sepal.Length > 5 ~ "large",
  5. Sepal.Length <= 5 ~ "small")) %>%
  6. select(Sepal.Width,
  7. Species,
  8. category)
  9. # Figure
  10. ggplot(data = sample_data) +
  11. aes(x = category,
  12. y = Sepal.Width,
  13. fill = category) +
  14. ggdist::stat_halfeye(
  15. adjust = 0.5,
  16. justification = -.1,
  17. .width = 0,
  18. point_colour = NA
  19. ) +
  20. geom_boxplot(width = .05,
  21. outlier.colour = NA,
  22. alpha = 0.5) +
  23. ggdist::stat_dots(
  24. side = "left",
  25. justification = 1.1,
  26. binwidth = 0.015) +
  27. facet_grid(~ Species) +
  28. labs(title = "Figure 1: Change in sepal width with sepal length",
  29. x = "Sepal length") +
  30. coord_flip() +
  31. tidyquant::scale_fill_tq() +
  32. tidyquant::theme_tq()

修剪离散变量的 ggplot 修改的雨云图中的空白空间。

英文:

I'm having difficulty trimming white space from the discrete axis of a ggplot. See reprex below - how can I remove the white space between the data for "large" and the x-axis? I've tried various versions of scale_x_discrete but it doesn't seem to have any effect.

  1. # Prepare data
  2. sample_data &lt;- iris %&gt;%
  3. filter(Species == &quot;setosa&quot; | Species == &quot;virginica&quot;) %&gt;%
  4. mutate(category = case_when(Sepal.Length &gt; 5 ~ &quot;large&quot;,
  5. Sepal.Length &lt;= 5 ~ &quot;small&quot;)) %&gt;%
  6. select(Sepal.Width,
  7. Species,
  8. category)
  9. # Figure
  10. ggplot(data = sample_data) +
  11. aes(x = category,
  12. y = Sepal.Width,
  13. fill = category) +
  14. ggdist::stat_halfeye(
  15. adjust = 0.5,
  16. justification = -.1,
  17. .width = 0,
  18. point_colour = NA
  19. ) +
  20. geom_boxplot(width = .05,
  21. outlier.colour = NA,
  22. alpha = 0.5) +
  23. ggdist::stat_dots(
  24. side = &quot;left&quot;,
  25. justification = 1.1,
  26. binwidth = 0.015) +
  27. facet_grid(~ Species) +
  28. labs(title = &quot;Figure 1: Change in sepal width with sepal length&quot;,
  29. x = &quot;Sepal length&quot;) +
  30. coord_flip() +
  31. tidyquant::scale_fill_tq() +
  32. tidyquant::theme_tq()

修剪离散变量的 ggplot 修改的雨云图中的空白空间。

答案1

得分: 1

一个修整空白的选项是通过coord_flipxlim参数来设置x轴的限制。但请注意,设置限制的下界需要一些调整,这取决于绘图的大小或高度。

英文:

One option to trim the whitespace would be to set the limits for the x scale via the xlim argument of coord_flip. Note however that setting the lower bound for the limits will require some fiddling and depends on the plot size or height.

  1. library(ggplot2)
  2. library(ggdist)
  3. library(tidyquant)
  4. ggplot(data = sample_data) +
  5. aes(
  6. x = category,
  7. y = Sepal.Width,
  8. fill = category
  9. ) +
  10. ggdist::stat_halfeye(
  11. adjust = 0.5,
  12. justification = -.1,
  13. .width = 0,
  14. point_colour = NA
  15. ) +
  16. geom_boxplot(
  17. width = .05,
  18. outlier.colour = NA,
  19. alpha = 0.5
  20. ) +
  21. ggdist::stat_dots(
  22. side = &quot;left&quot;,
  23. justification = 1.1,
  24. binwidth = 0.015
  25. ) +
  26. facet_grid(~Species) +
  27. labs(
  28. title = &quot;Figure 1: Change in sepal width with sepal length&quot;,
  29. x = &quot;Sepal length&quot;
  30. ) +
  31. tidyquant::scale_fill_tq() +
  32. tidyquant::theme_tq() +
  33. coord_flip(xlim = c(1.25, NA))

修剪离散变量的 ggplot 修改的雨云图中的空白空间。

huangapple
  • 本文由 发表于 2023年6月6日 12:47:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76411511.html
匿名

发表评论

匿名网友

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

确定