Pregunta:
Quale tipo di grafico è meglio utilizzare per rappresentare i dati di tipo qualitativo? mostra quanti supereroi apparsi prima del 2020 ci sono per ogni publisher
Autor: federico volpeRespuesta:
Heroes_with_year = heroes[heroes['First appearance'] < 2020] heroes_with_year['Publisher'].value_counts().plot.bar() plt.show() ---------------------------------------oppure:--------------------------------------- publisher_freq.plot.bar() plt.show()
0 / 5 (0 calificaciones)
![heroes_with_year = heroes[heroes['First appearance'] < 2020]
heroes_with_year['Publisher'].value_counts().plot.bar()
plt.show()
---------------------------------------oppure:---------------------------------------
publisher_freq.plot.bar()
plt.show()](https://markdown.memory.com/eq_uploads/1201374/question_image_1d097463-da41-407c-8313-b0d9aca27414.jpg)
1 answer(s) in total