SciPy - Statistical Tests
What will be the output of the following code snippet?
from scipy.stats import mannwhitneyu x = [1, 3, 5] y = [2, 4, 6] stat, p = mannwhitneyu(x, y) print(round(stat, 2), round(p, 3))
