# RESOLUCIÓN GRÁFICA
sns.displot(mi_df, x='article_name')
plt.xticks(rotation=90)
plt.show()
# RESOLUCIÓN GRÁFICA
#ojo voy a tomar solamente los primeros articulos
plt.pie(x=por_vta['total_amount'], labels=por_vta.index)
plt.show()
# RESOLUCIÓN GRÁFICA
plt.bar(df4.index , df4['total_amount'])
plt.xticks(rotation=60)
plt.show()
# RESOLUCIÓN GRÁFICA
plt.bar(df5.index , df5['total_amount'])
plt.show()