I’m discovering Makie and after reading the documentation, I don’t understand how to produce boxplots that have different colors. Here’s a MWE:
group = repeat([1,2],inner=500)
boxplot(rand(1:3,1000), randn(1000), dodge = group)
Which produces 6 boxplots, grouped two by two, as expected. I would just like color differently the right plot of each dodge but color = group does not work.
My bad you clearly said Makie. However, looking for examples I came across examples from StatsPlots and I then forgot you had specifically required Makie!
Doing this plot directly with Makie is a bit clumsy at the moment, but I’m planning to make a PR to support passing a vector of colors (see examples with violin, where this is already possible).