SciPy - Statistical Tests
What is the output of this code snippet?
from scipy.stats import spearmanr x = [10, 20, 30, 40, 50] y = [5, 15, 25, 35, 45] result = spearmanr(x, y) print(round(result.correlation, 2))
