SciPy - Statistical Functions (scipy.stats) Basics
What will be the output of this code?
import numpy as np from scipy import stats data = np.array([2, 4, 6, 8, 10]) q = stats.quantiles(data, n=4) print(q)
