SciPy - Statistical Functions (scipy.stats) Basics
Given the code below, what will be the output for the count and min values?
import numpy as np from scipy.stats import describe arr = np.array([4, 8, 15, 16, 23, 42]) stats = describe(arr) print(stats.nobs, stats.minmax[0])
