[New Feature/Enhancement]: Allow to Choose NumPy/pandas for Group Aggregated Values #3
Closed
6 tasks done
Labels
enhancement
New feature or request
What is the New Feature/Enhancement?
To calculate
percentile
orquantile
the module currently uses thepandas.Series.quantile
method which works with the limited optional parameters{‘linear’, ‘lower’, ‘higher’, ‘midpoint’, ‘nearest’}
(as on 20.04.2024). However, we can also choosenp.quantile
ornp.percentile
. This requires the following tweaks:pandas.Series.quantile
method,numpy
set the defaultdropna = True
as inpd.quantile
,Code of Conduct
The text was updated successfully, but these errors were encountered: