question

Tommy Heyser avatar image
1 Like"
Tommy Heyser asked Alexander M7 commented

Calculating percentiles for experiment

Is there a way to customise the performance measure report to include calculated percentiles, e.g. P10, P50, P90, from the results of an experiment?

The current plan is to take the dataset, e.g. average throughput for each replication in an experiment, and calculate the percentiles separately, but I'm wondering if the performance measure report can do that automatically.

Is the template that FlexSim uses to create the performance measure report something that I can customise? In particular, I'd like to include the percentiles in the summary table.

FlexSim 20.0.3
percentiles
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Jordan Johnson avatar image
1 Like"
Jordan Johnson answered Alexander M7 commented

In FlexSim you can query the Performance Measures Table:

  1. SELECT * FROM Experiment.PerformanceMeasures

You can then export this table to Excel, and work with in there.

Within FlexSim, you can use window functions such as NTILE() to put pfms into buckets:

  1. SELECT PFM1, NTILE(10) OVER (ORDER BY PFM1) AS Buckets
  2. FROM Experiment.PerformanceMeasures
  3. ORDER BY PFM1
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.