My data format is like this:
+--------+----------+----------+----------+----------+----------+----------+
| method | Feature1 | Feature2 | Feature3 | Feature4 | Feature5 | Feature6 |
+--------+----------+----------+----------+----------+----------+----------+
| A | value | value | value | value | value | value |
+--------+----------+----------+----------+----------+----------+----------+
| B | value | value | value | value | value | value |
+--------+----------+----------+----------+----------+----------+----------+
| A | value | value | value | value | value | value |
+--------+----------+----------+----------+----------+----------+----------+
I want to plot violinplot like this:
Where the X-axis is the features and Y-axis is the whole column value, and hue to method. So how to plot with seaborn? I do read the example code, which seems like I have to reconstruct my data?