Introduction
Percentiles help us understand the position of a value in a list compared to others. Using np.percentile() lets us find these positions easily.
To find the value below which a certain percentage of data falls, like the 25th percentile (first quartile).
To understand the spread of exam scores and see what score separates the top 10% from the rest.
To detect outliers by checking values at very low or very high percentiles.
To summarize data distribution without looking at every number.