SciPy - Statistical Tests
What will be the output of this code?
from scipy.stats import spearmanr x = [3, 1, 4, 2, 5] y = [10, 20, 30, 40, 50] result = spearmanr(x, y) print(round(result.correlation, 2))
