Pandas.. Does Quantile Function Need Sorted Data To Calculate Percentiles?
I'm using Pandas to clean up some data and do basic statistics. I am wondering if quantile() does sort the values before the calculation or i must do the sorting beforehand? For ex
Solution 1:
You do not need to sort. See the link in my previous comment. Example
Post a Comment for "Pandas.. Does Quantile Function Need Sorted Data To Calculate Percentiles?"