ggforce::auto_histogram() no longer working?

has there been a breaking change to ggforce::geom_autohistogram()?

even using an example from @thomasp85 's original site, the output does not display correctly, and we get a warning about stat_autobin(), see below:

> ggplot(mpg, aes(x = .panel_x, y = .panel_y, fill = drv, colour = drv)) + 
+     geom_point(shape = 16, size = 0.5, position = 'auto') + 
+     geom_autohistogram() + 
+     facet_matrix(vars(fl, displ, hwy), layer.diag = 2)
Warning messages:
1: Computation failed in `stat_autobin()`.
Caused by error in `compute_group()`:
! unused arguments (origin = NULL, right = NULL) 
2: Computation failed in `stat_autobin()`.
Caused by error in `compute_group()`:
! unused arguments (origin = NULL, right = NULL) 

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.