This pull request updates the percentile calculation method to be compliant with regulatory requirements. Previously, percentiles were calculated using interpolation, which could generate intermediate values. This method is not permitted for regulatory calculations.
With this update:
Percentiles are calculated by position in the sorted dataset.
No intermediate values are generated, ensuring the calculations adhere to the regulatory guidelines.
This change improves accuracy and ensures that the calculations align with the required standards for normative use.
Key Changes:
Switched from interpolation-based percentile calculation to position-based calculation.
Removed any logic that generates intermediate values.
Please review and let me know if any additional adjustments are needed.
Description:
This pull request updates the percentile calculation method to be compliant with regulatory requirements. Previously, percentiles were calculated using interpolation, which could generate intermediate values. This method is not permitted for regulatory calculations.
With this update:
This change improves accuracy and ensures that the calculations align with the required standards for normative use.
Key Changes:
Please review and let me know if any additional adjustments are needed.