calculate quartile in python code example
Example 1: calculate quartil python
>>> np.percentile(df.time_diff, 25) # Q1
0.48333300000000001
>>> np.percentile(df.time_diff, 50) # median
0.5
>>> np.percentile(df.time_diff, 75) # Q3
0.51666699999999999
Example 2: calculate quartiles python
# credit to the source link
import numpy as np
quant = np.quantile(arr, q)
# arr: array - like object (list or np.array)
# q: float from 0 to 1