sns.stripplot(data=tips, x='day',y='total_bill', hue='sex',dodge=True)
plt.show()
sns.boxplot(data=tips, x='day', y='total_bill',hue = 'sex', dodge=True)
sns.swarmplot(data=tips, x='day', y='total_bill',hue = 'sex', dodge=True, color='0', marker='*')
plt.show()
sns.violinplot(data=tips, x='day', y='total_bill',hue = 'sex')
plt.show()
#split
sns.violinplot(data=tips, x='day', y='total_bill',hue = 'sex', split=True)
plt.show()
sns.catplot(data=tips, x='day', y='total_bill',hue = 'sex', split=True, kind='violin', col='time')
plt.show()
sns.pairplot(data=tips)
# Eliminamos gráficas repetidas
sns.pairplot(data=tips, corner=True)