SciPy - Statistical Tests
What is the issue with this code?
from scipy.stats import pearsonr x = [5, 10, 15] y = [20, 25] corr, p = pearsonr(x, y) print(corr)
