I'm using Gadfly to plot layers, how can I change the order?
I already tried follow the docs but it doesn't work.
using DataFrames
df = readtable("data/01_heights_weights_genders.csv")
xmin, xmax = extrema(df[:Height])
ymin, ymax = extrema(df[:Weight])
plot(layer(df, x="Height", y="Weight", Geom.point, color="Gender", order = 1),
layer(x=[xmin, xmax],y=[ymin, ymax], Geom.point,Geom.line, Theme(default_color=colorant"purple"), order = 10))