Buscar
Estás en modo de exploración. debe iniciar sesión para usar MEMORY

   Inicia sesión para empezar


Por supuesto:

statistica/python

» Iniciar este curso
(Practica preguntas similares gratis)
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 volpe



Respuesta:

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()
1 answer(s) in total