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 la funzione cumulativa empirica per l'anno di prima apparizione

Author: federico volpe

mostrare la funzione cumulativa empirica per l'anno di prima apparizione



Answer:

Import statsmodels.api as sm ecdf = sm.distributions.ECDF(heroes_with_year['First appearance']) x = np.arange(1980, 1991) y = ecdf(x) plt.step(x, y) plt.show()


0 / 5  (0 ratings)

1 answer(s) in total