“Python Plot Groupby” Código de respuesta

Cómo trazar gráfico utilizando el grupo por función en python

#plot data
fig, ax = plt.subplots(figsize=(15,7))
data.groupby(['date','type']).count()['amount'].plot(ax=ax)
Wide-eyed Whale

Python Plot Groupby

df.groupby(['tags_0', 'gender']).gender.count().unstack().plot(kind='barh', legend=False, color=['r', 'g', 'b'])
Ruben Visser

Cómo trazar gráfico utilizando el grupo por función en python

# plot data
fig, ax = plt.subplots(figsize=(15,7))
# use unstack()
data.groupby(['date','type']).count()['amount'].unstack().plot(ax=ax)
Wide-eyed Whale

Respuestas similares a “Python Plot Groupby”

Preguntas similares a “Python Plot Groupby”

Más respuestas relacionadas con “Python Plot Groupby” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código