R瀑布图

时间:2019-01-15 08:50:10

标签: r ggplot2 waterfall

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

以下是数据:

enter image description here

这是代码和错误:

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试一下:

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))