>>> import seaborn as sns
>>> sns.set_theme(style="whitegrid")
>>> ax = sns.boxplot(x=tips["total_bill"])
import seaborn
seaborn.set(style='whitegrid')
tip = seaborn.load_dataset('tips')
seaborn.boxplot(x='day', y='tip', data=tip)
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
sns.boxplot(x="day", y="total_bill", data=tips,palette='rainbow') # box plot
sns.boxplot(x="day", y="total_bill", data=tips,palette='rainbow', orient='h')
# box plot in horizontal mode
sns.boxplot(x="day", y="total_bill", hue="smoker",data=tips, palette="coolwarm")
# box plot with simultabeous boxes for smoker categories
plt.show()