SciPy - Statistical Tests
Identify the error in this code snippet:
from scipy.stats import pearsonr x = [1, 2, 3] y = [4, 5] corr, p = pearsonr(x, y) print(corr)
