SciPy - Statistical Tests
What will be the output of this code snippet?
from scipy.stats import pearsonr x = [10, 20, 30, 40, 50] y = [15, 25, 35, 45, 55] corr, p_val = pearsonr(x, y) print(round(corr, 3))
