How to make Geom.errorbar work with Geom.subplot_grid in Gadfly.jl

The solution here is to use Geom.yerrorbar rather than the more general Geom.errorbar. The issue is that Geom.errorbar (when used with Geom.subplot_grid) is trying to inherit {:xmin, :xmax, :ymin, :ymax} from the plot. Might be related to https://github.com/GiovineItalia/Gadfly.jl/issues/1516. And may be eventually fixed by https://github.com/GiovineItalia/Gadfly.jl/pull/1520 (which I hope to return to some day!)

1 Like