[1654c6]: / ispy1 / figures.py

Download this file

5 lines (3 with data), 140 Bytes

1
2
3
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");