SciPy - Statistical Tests
Identify the error in this Mann-Whitney U test code and select the fix:
from scipy.stats import mannwhitneyu x = [1, 2, 3] y = [4, 5, 6] stat, p = mannwhitneyu(x, y, alternative='greater') print(stat, p)
