Gadfly does not seem to use the (level) order of categorical variables:
using CSV
using DataFrames
using Gadfly
using HTTP
url = "https://raw.githubusercontent.com/mwaskom/seaborn-data/master/tips.csv"
tips = CSV.File(HTTP.get(url).body) |> DataFrame
categorical!(tips, :day)
ordered!(tips.day, true)
levels!(tips.day, ["Thur", "Fri", "Sat", "Sun"])
Gadfly.plot(tips, x=:day, y=:total_bill, color=:smoker, Geom.boxplot)
Should the plot not inherit the order specified in the categorical variable?
I found a way to order the categorical values, but that feels a little 'buggy' because of specifying the order again.
Gadfly.plot(tips, x=:day, y=:total_bill, color=:smoker, Geom.boxplot,
Scale.x_discrete(levels=levels(tips.day)))
Any suggestions how to solve this?