sns.boxplot(x="day",y="total_bill",hue="smoker",data=t, palette="coolwarm")Copy
sns.barplot(x='sex',y='total_bill',data=t)Copy
## creating count plot with title using seaborn sns.countplot(x=dia.Outcome) plt.title("Count Plot for Outcome")