Answers for "calculate quartiles python"

1

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
Posted by: Guest on May-05-2021
0

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
Posted by: Guest on May-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language