SciPy - Statistical Tests
Find the bug in this code:
from scipy.stats import spearmanr x = [1, 2, 3, 4] y = [4, 3, 2, 1] result = spearmanr(x) print(result.correlation)
