Diff of /ispy1/figures.py [000000] .. [1654c6]

Switch to side-by-side view

--- a
+++ b/ispy1/figures.py
@@ -0,0 +1,4 @@
+import seaborn as sns
+
+def boxplot(ydata,xdata, hue_data, df):
+    sns.boxplot(x= xdata, y=ydata, hue = hue_data, data=df, palette="Set3");