×
×
Correct!
Insert the missing method to meassure whether the data is heavy or lightly tailed compared to a normal distribution:
import numpy as np
from scipy.stats import skew, kurtosis
v = np.random.normal(size=100)
print(@(8)(v))
import numpy as np
from scipy.stats import skew, kurtosis
v = np.random.normal(size=100)
print(kurtosis(v))
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 20 exercises.
Are you sure you want to continue?