I want to extend the Gadfly package to match my own idiosyncratic preferences. However I am having trouble understanding how to use Gadfly's statistics in a way that allows for their output to be processed before plotting.
For example, say I want to use the x,y aesthetics produced by Stat.histogram. To add these to a plot, I understand I can include Stat.histogram
as an argument in a layer()
. But what do I do if I want to use Stat.histogram to calculate the x,y aesthetics, edit them using my own code, and then plot these edited aesthetics?
I'm looking for a function like load_aesthetics(layer(x=x, Stat.histogram))
, or a field like layer(x=x, Stat.histogram).aesthetics
.
Building off @bjarthur's answer, I wrote the below function.
Example usage: