Inizia subitoInizia gratis

Plotting the sample mean

Now let's plot the sample mean, so you can see more clearly how it evolves as more data becomes available.

For this exercise we'll again use the sample you generated earlier, which is available in the sample variable. The binom object and describe() function have already been imported for you from scipy.stats, and matplotlib.pyplot is available as plt.

Questo esercizio fa parte del corso

Foundations of Probability in Python

Visualizza corso

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Calculate sample mean and store it on averages array
averages = []
for i in range(____, ____):
    averages.____(____(sample[0:____]).____)
Modifica ed esegui il codice