Arrange the data in ascending order
Find the median (Q2)
Split the data into the lower half and upper half (exclude the median if the total count is odd)
Find the median of the lower half (Q1)
Find the median of the upper half (Q3)
Compute the interquartile range: IQR = Q3 − Q1
