SciPy - Curve Fitting and Regression
What will be the output of this code?
from scipy.stats import chisquare observed = [10, 20, 30] expected = [15, 15, 30] result = chisquare(f_obs=observed, f_exp=expected) print(round(result.statistic, 2))
