我试图使用网络上提供的示例代码绘制瀑布。
我在数据准备之后收到错误消息以及是时候进行绘图了。
# Create Plot
plot <- ggplot(df, aes(desc, fill = type)) +
geom_rect(aes(x = desc,
xmin = id - 0.45, xmax = id + 0.45,
ymin = end, ymax = start))
# Error here. "Warning: Ignoring unknown aesthetics: X"
还有一部分代码我不明白它在做什么。
df <- df[,c(3,1,4,2)]
此处提供完整的R代码:
https://gist.github.com/khaki22/fd33072e21dc3e2290b213c53366d2a2#file-r_waterfall_plot
帮助!请。 : - )