- Split the first 10% of the data: ``` import numpy as np dataset = [5, 10, -20, 42, -9, 10] ten_percent = np.quantile(dataset, 0.10) ``` - Informs if a data point is in the bottom 10% of the dataset.