SciPy - Statistical Functions (scipy.stats) Basics
Identify the error in this code snippet:
import numpy as np from scipy import stats data = np.array([1, 2, 3, 4, 5]) percentile = stats.scoreatpercentile(data, 110) print(percentile)
