SciPy - Statistical Tests
Find the error in this code snippet:
import numpy as np from scipy.stats import chi2_contingency observed = np.array([[5, 10], [15]]) chi2, p, dof, expected = chi2_contingency(observed) print(chi2)
Find the error in this code snippet:
import numpy as np from scipy.stats import chi2_contingency observed = np.array([[5, 10], [15]]) chi2, p, dof, expected = chi2_contingency(observed) print(chi2)
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions