Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • opReports truncates to an integer to get index at 95th percentile, for example:
    95% of 276 records = 262.2
    opReports determines the 95th percentile to be INT(262.2)=262nd record, with records sorted ascending.
  • Excel use a ratio based on value at that index opReport uses and the value at next index to account for the fractional part of the index, for example:
    95% of 276 records = 262.2
    Excel calculates a final 95th percentile being a ratio of the 262nd and 263rd records, with records sorted ascending.
    The ratio that Excel uses is not a simple ratio:
    reverse engineering an actual Excel 95th percentile result provides that the ratio used for 276 records is 276262.25
    and not the 262.2 that  is the exact result of the equation '95% of 276'.
     

...