SciPy - Statistical Tests
Examine this code snippet:
What is the issue with this code?
from scipy.stats import mannwhitneyu x = [3, 5, 7] y = [2, 4, 6] result = mannwhitneyu(x, y, alternative='less', use_continuity=True) print(result.statistic, result.pvalue)
What is the issue with this code?
