Menu
×
×
Correct!
Exercise:Insert the missing method to meassure the summetry in data:
import numpy as np
from scipy.stats import skew, kurtosis
v = np.random.normal(size=100)
print(@(4)(v))
import numpy as np
from scipy.stats import skew, kurtosis
v = np.random.normal(size=100)
print(skew(v))
Not CorrectClick here to try again. Correct!Next ❯ |