Closed
Description
I can reproduce this on my local without hexbin installed.
> library(ggplot2)
> d <- ggplot(diamonds, aes(carat, price))
> d + geom_hex()
Warning message:
Computation failed in `stat_binhex()`:
I think this is because check_installed
is inside compute_group
, where the error is ignored.
Line 52 in c89c265