12.25 水流图

常用于时间序列数据展示的堆积区域图,ggstreamstreamgraph

library(ggstream)

ggplot(blockbusters, aes(year, box_office, fill = genre)) +
  geom_stream() +
  theme_minimal()
堆积区域图

图 12.66: 堆积区域图