SciPy - Statistical Tests
Identify the error in this code snippet using the Wilcoxon signed-rank test:
from scipy.stats import wilcoxon x = [1, 2, 3] y = [1, 2] stat, p = wilcoxon(x, y) print(stat, p)
Identify the error in this code snippet using the Wilcoxon signed-rank test:
from scipy.stats import wilcoxon x = [1, 2, 3] y = [1, 2] stat, p = wilcoxon(x, y) print(stat, p)
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions