SciPy - Statistical Functions (scipy.stats) Basics
What will be the output of this code snippet?
import numpy as np from scipy import stats sample = np.array([5, 7, 8, 9, 10]) mean = np.mean(sample) sem = stats.sem(sample) print(round(sem, 3))
