Calculating the sample mean
Now you can calculate the sample mean for this generated sample by taking some elements from the sample.
Using the sample
variable you just created, you'll calculate the sample means of the first 10, 50, and 250 samples.
The binom
object and describe()
method from scipy.stats
have been imported for your convenience.
This exercise is part of the course
Foundations of Probability in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Print the sample mean of the first 10 samples
print(____(sample[0:____]).____)