Question:
Diagramma di pareto per il colore degli occhi con frequenza inferiore a .02
Author: federico volpeAnswer:
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