SciPy - Statistical Tests
What will be the output of this code snippet?
from scipy.stats import wilcoxon x = [10, 20, 30, 40] y = [12, 18, 33, 37] stat, p = wilcoxon(x, y) print(round(stat, 2), round(p, 3))
What will be the output of this code snippet?
from scipy.stats import wilcoxon x = [10, 20, 30, 40] y = [12, 18, 33, 37] stat, p = wilcoxon(x, y) print(round(stat, 2), round(p, 3))
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions