Since the tidyverse developer day is near, I share my very very secret technique to debug ggplot2. Though this is a very small thing, hope this helps someone a bit.
ggplot2 is unbreakable!
You might want to debug()
the methods of Geom
s or Stat
s.
debug(GeomPoint$draw_panel)
But, this is not effective because the geom_point()
generates different instances, …