R-瀑布图

R-waterfall diagram

当我尝试使用以下数据创建瀑布时,出现以下错误。感谢您的支持..

数据如下:

这是代码和错误:

试试这个:

library(tidyverse)
library(wrapr)

deneme %.>%
  ggplot(., aes(
    xmin = id - .45,
    xmax = id + .45,
    ymin = end,
    ymax = start,
    fill = type
  )) +
  geom_rect() +
  scale_x_continuous(
    breaks = .$id,
    labels = .$desc
  ) +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))