Im running into a confusion with categorical data plots, which is probably because I dont really understand the concept.
I have a dataframe:
A B C
0 1.438161 -0.210454 -1.983704
1 -0.283780 -0.371773 0.017580
2 0.552564 -0.610548 0.257276
3 1.931332 0.649179 -1.349062
4 1.656010 -1.373263 1.333079
5 0.944862 -0.657849 1.526811
which I can easily plot as a boxplot for each column using seaborn:
sns.boxplot(df)
However swarmplots, stripplots dont work, I guess because categorical data is needed?
value indx
1.438161 A
-0.283780 A
...
0.552564 B
1.931332 B
...
1.656010 C
0.944862 C
Is there a very easy quick way to do this, that Im not aware of?
https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.swarmplot.html
sns.boxplot(data=df)
– jezrael