I have the following dataframe df:
A B C D E Gender
0 3.125 3.333333 3.333333 2.500 3.6 male
1 3.875 4.444444 4.555556 2.000 4.3 male
2 3.750 2.555556 4.111111 2.750 3.1 female
3 3.125 4.111111 4.444444 2.000 3.9 female
4 4.000 4.777778 4.777778 1.250 3.6 female
5 2.875 4.333333 4.000000 3.250 3.6 male
6 3.250 3.444444 2.333333 2.875 4.1 male
Now I would like to draw the following plot using Seaborn:
ax = sns.stripplot(x=" ", y=" ", hue="Gender", data=df, jitter=True, palette="Set2", dodge=True)
Unfortunately, I don't know what I have to put into x and y because the format of my dataframe does somehow not really match. I would like to have 5 scatterplots on the x-axis (A,B,C,D and E) and on the y-axis the values the values of A,B,C,D and E should be plotted.
How can I achieve this?


