I am doing a medical-related simulation. As the picture shows, I want to record the average time people spent from timeMeasureStart to timeMeasureEnd. I only know how to make a simple Histogram distribution but how can I get the average time?


CodePudding user response:
You can use the DataSet feature and access the mean with dataset.getYMean().

