SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

statistica/python

» Start this Course
(Practice similar questions for free)
Question:

Diagramma di pareto per il colore degli occhi con frequenza inferiore a .02

Author: federico volpe



Answer:

Eye_color = heroes['Eye color'] eye_color_freq = eye_color.value_counts(normalize=True) eye_color_freq[eye_color_freq>.02].cumsum().plot() eye_color_freq[eye_color_freq>.02].plot.bar() plt.show()


0 / 5  (0 ratings)

1 answer(s) in total