How could I approach to find 95th percentile of a column data? The question is: FInd the 95th percentile of earthquake magnitude in Japan using the magType of 'mb'.
I am able to filter Magtype 'mb', but how could I find the percentile?
import pandas as pd
import numpy as np
df = pd.read_csv('data/parsed.csv', usecols=['time', 'title', 'place',
'magType', 'mag', 'alert','tsunami'])