library(ggstream)
library(ggplot2)
ggplot(blockbusters, aes(year, box_office, fill = genre)) +
geom_stream() +
geom_stream_label(aes(label = genre))
# Warning message:
# Computation failed in `stat_stream_density_text()`:
# Problem with `summarise()` input `ymin`.
# x Column `xymin` not found in `.data`
# ℹ Input `ymin` is `max(.data$xymin)`.
I run the demo code below,
warning occurs, and the plot without label,
SessionInfo