“Parcela de violín Seabor” Código de respuesta

Parcelas de violín en Seaborn

import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline

sns.violinplot(x="day", y="total_bill", data=tips,palette='rainbow') \
# standard violin plot

sns.violinplot(x="day", y="total_bill", data=tips,hue='sex',palette='Set1') \
# violin plots showing simultaneous violin plots side-by-side for sex categories

plt.show()
nilotpalc

Parcela de violín Seabor

import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline

sns.violinplot(x="day", y="total_bill", data=tips,palette='rainbow')
nilotpalc

Respuestas similares a “Parcela de violín Seabor”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código