Created
July 17, 2019 21:38
-
-
Save ZeccaLehn/66430dfe3047a394338f2ff0ebe51db4 to your computer and use it in GitHub Desktop.
Boxplot Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
data = pd.read_csv('Stages.csv').dropna() | |
x = "Stage" | |
y = "Experimental" | |
plt.figure(figsize=(15,16)) | |
sns.boxplot(x = x, y = y, data=data) | |
sns.swarmplot(x = x, y = y, data = data, color=".1") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment