Grouped Bar Plots

How do I get my grouped bar plot bars to be next to each other and not on top of each other?

code pulling data from dataframe:
plot_vio = bar(
categorical(analysis.type),
analysis.val,
group = categorical(string.(analysis.max_val)),
bar_position= :dodge,
bar_width= 0.1,
xlabel = “Type”,
ylabel = “Val”,
title = “Val by Type and max”,
)

For each max val, there are multiple vals and a label of type

Have you looked at the StatsPlots.jl documentation under groupedbar plots?

In AoG it works like this I suppose: