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