SciPy - Statistical Functions (scipy.stats) Basics
What will be the variance value returned by
scipy.stats.describe for the array [1, 2, 3, 4, 5]?from scipy.stats import describe arr = [1, 2, 3, 4, 5] stats = describe(arr) print(round(stats.variance, 2))
