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

Switch to unified view

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