In the Gadfly documentation
(http://dcjones.github.io/Gadfly.jl/geom_boxplot.html), it makes mention
that behind the scenes, these aesthetics are used:
Aesthetics used directly:
- x
- middle
- lower_hinge
- upper_hinge
- lower_fence
- upper_fence
- outliers
It's clear how to create the plot example, but how can I manipulate the
aesthetics, such as changing the box color from blue to white or the middle
value from light blue to black?
plot(dataset("lattice", "singer"), x="VoicePart", y="Height", Geom.boxplot)