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:

Mostrare il grafo di first appearance ogni 10 anni dal 1935 al 2015

Author: federico volpe

mostrare il grafo di first appearance ogni 10 anni dal 1935 al 2015



Answer:

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