sns.violinplot(data=tips, x='day', y='total_bill', hue='sex', dodge=True, palette='pastel')
#split
sns.violinplot(data=tips, x='day', y='total_bill', hue='sex', dodge=True, palette='pastel', split=True)
sns.catplot(data=tips, x='day', y='total_bill', hue='sex', dodge=True, palette='pastel', kind='violin', split=True, col='time')
sns.pairplot(data=tips)
# Eliminamos gráficas repetidas
sns.pairplot(data=tips, corner=True)