Hi, I was wondering if there was a way to hide the names of each boxplots using StatsPlots grouped boxplots. I looked into both Plots and StatsPlots documentation, but I couldn’t find an argument atribute for it.
Here’s some sample data:
df_test = DataFrame()
df_test.id = ["One","One","One", "Two","Two"]
df_test.value = [2,15,19,30,56]
p1 = @df df_test boxplot(string.(:id), :value, fillalpha=0.75, linewidth=2, group = :id,legend=false)
And here’s is the output:
I want to generate the same plot, but without the “One” and “Two” labels under the x axis.
Thanks in advance,