Question:
Mostrare il grafo di first appearance ogni 10 anni dal 1935 al 2015
Author: federico volpeAnswer:
First_app_freq = first_appearance[first_appearance < 2090].value_counts().sort_index() plt.bar(first_app_freq.index, first_app_freq.values) plt.xlim((1935, 2015)) plt.ylim(0, 18.5) plt.show()
0 / 5 Â (0 ratings)
1 answer(s) in total