SciPy - Statistical Tests
What is the output of this code?
from scipy.stats import pearsonr x = [1, 2, 3, 4] y = [4, 3, 2, 1] result = pearsonr(x, y) print(round(result[0], 2))
