如何省略在 geom_density_ridges2() 中绘制 NA 水平

问题描述 投票:0回答:1

This question is related to this extend axis to 0 with geom_density_ridges2.

此处 OP 要求扩展 x 轴以显示现有比例的 0、1、2。 当@stefan 使用

limits = c(-.5, 9.5)
发布正确答案时, 我尝试了另一种方法,将缺少的 0、1、2 作为新行添加到
value
df
列,将此行添加到代码中
complete(value = seq(0, max(value), 1))
结果:

library(dplyr)
library(tidyr)
library(ggplot2)
library(ggridges)

df %>%
  complete(value = seq(0, max(value), 1)) %>%
  ggplot(aes(x = value, y = item, group = item)) +
  geom_density_ridges2(aes(fill = item), 
                       stat = "binline", 
                       binwidth = 1, 
                       scale = 0.95) +
  geom_text(
    stat = "bin",
    aes(
      y = group + 0.95*stat(count/max(count)),
      label = ifelse(stat(count) > 0, stat(count), "")
    ),
    vjust = -0.5, size = 3, color = "black", binwidth = 1
  ) +
  scale_x_continuous(
    breaks = 0:9, 
    name = "Answer (higher = better)"
  ) +
  scale_y_discrete(
    expand = expansion(add = 2)
  ) +
  scale_fill_viridis_d() +
  labs(
    title = "Example",
    y = NULL
  ) +
  theme_ridges(grid = FALSE) +
  theme(
    axis.title.x = element_text(hjust = 0.5),
    axis.title.y = element_text(hjust = 0.5),
    legend.position = "none",
    plot.title.position = "plot",
    plot.title = element_text(face="bold")
  )

如何在保留上图中 x 轴的值的同时删除 NA 级别?

期望的输出:

数据:

df <- df <- structure(list(id = c(1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 
7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 
16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 
24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29), item = structure(c(1L, 
2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 
2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 
2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 
2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L), .Label = c("A", "B", "C", 
"D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N"), class = "factor"), 
    value = c(8, 9, 4, 5, 8, 9, 7, 9, 8, 8, 7, 6, 9, 8, 9, 9, 
    9, 9, 8, 9, 9, 9, 8, 9, 8, 8, 7, 8, 8, 8, 7, 9, 8, 9, 8, 
    9, 9, 9, 9, 9, 8, 9, 9, 9, 9, 7, 9, 9, 8, 9, 8, 9, 7, 9, 
    7, 7, 7, 8)), row.names = c(NA, -58L), class = c("tbl_df", 
"tbl", "data.frame"))
r ggplot2 na ggridges
1个回答
1
投票

您可以通过在

NA
中设置
limits
来删除
scale_Y_discrete
类别,以仅包含所需的“真实”类别:

library(dplyr)
library(tidyr)
library(ggplot2)
library(ggridges)

df %>%
  complete(value = 0:9) %>%
  ggplot(aes(x = value, y = item, group = item)) +
  geom_ridgeline(
    aes(fill = item),
    stat = "binline",
    binwidth = 1,
    scale = 0.95
  ) +
  geom_text(
    stat = "bin",
    aes(
      y = group + 0.95 * stat(count / max(count)),
      label = ifelse(stat(count) > 0, stat(count), "")
    ),
    vjust = -0.5, size = 3, color = "black", binwidth = 1
  ) +
  scale_x_continuous(
    breaks = 0:9,
    name = "Answer (higher = better)",
    expand = c(0, 0)
  ) +
  scale_y_discrete(
    limits = c("A", "B"),
    expand = expansion(add = 1)
  ) +
  scale_fill_viridis_d() +
  labs(
    title = "Example",
    y = NULL
  ) +
  theme_ridges(grid = FALSE) +
  theme(
    axis.title.x = element_text(hjust = 0.5),
    axis.title.y = element_text(hjust = 0.5),
    legend.position = "none",
    plot.title.position = "plot",
    plot.title = element_text(face = "bold")
  )

© www.soinside.com 2019 - 2024. All rights reserved.