I want to sort boxplot.
'left is tall box' and 'right is not tall'
ggplot(data = iris ,aes(x = Species,y=Sepal.Width)) +
geom_violin(fill='gray')
I did this code, setosa:left and virginica:right.
but max(Sepal.Width) each Species, Versicolor is the least.
I want to sort setosa-virginica-versicolor reference to max(Sepal.Width).