Skip to content Skip to sidebar Skip to footer

Seaborn.boxplot And Dataframe

I have a dataFrame like this: I tried these two instructions one after another: sns.boxplot([dataFrame.mean_qscore_template,dataFrame.mean_qscore_complement,dataFrame.mean_qscore_

Solution 1:

sns.boxplot(data = dataFrame) will make boxplots for each numeric column of your dataframe.


Post a Comment for "Seaborn.boxplot And Dataframe"