Course Content
Learning Statistics with Python
2. Mean, Median and Mode with Python
3. Variance and Standard Deviation
4. Covariance vs Correlation
Learning Statistics with Python
Challenge 2
Task
Your task here is to calculate the interval that includes the mean weight of the penguin with a confidence level of 95%. Follow the algorithm:
- Extract the column
'mass'
from the datasetdata
. - Find the confidence interval with the following parameters:
- Set
0.95
for thealpha
parameter. - Set the standard error of the mean of the column
mean_list
for thescale
parameter.
- Set
Everything was clear?
Section 5. Chapter 5