Ejemplo 1: gráfico de porcentaje de variable categórica en python con matiz
sns.barplot(x='group', y='Values', data=df, estimator=lambda x: sum(x==0)*100.0/len(x))
Ejemplo 2: mostrar valores en countplot
plt.figure(figsize=(12,8))
ax = sns.countplot(x="AXLES", data=dfWIM, order=[3,4,5,6,7,8,9,10,11,12])
plt.title('Distribution of Truck Configurations')
plt.xlabel('Number of Axles')
plt.ylabel('Frequency [%]')
for p in ax.patches:
ax.annotate('%{:.1f}'.format(p.get_height()), (p.get_x()+0.1, p.get_height()+50))
Ejemplo 3: gráfica de recuento de seaborn
import pandas as pd
import seaborn as sns
df = pd.DataFrame()
sns.countplot(data=df)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)