-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compute_summary_statistics
could have option to use standard-error
#1555
Comments
Yes we would want the summary measure to be the mean or else raise an error. Since this is based on a mean over multiple runs with the same parameter values I can't think of exceptions where the mean and 95% CI would not be of value, but the analyst should obviously think for themselves also about what they are presenting they think makes sense. |
Ok, when #1457 is merged, I'll add this in. |
Thanks very much all. This is very clear and helpful. May I ask |
Yes, different random-number-generator sees for each run, so an "independent" draw of the same 'model'. This includes the properties of the population at the start of the simulation.
Yes, I believe so. (check with @andrew-phillips-1) |
Yes this seems right. if you can imagine doing a million runs with a given set of parameter values and doing this say 3 times, the mean for the output should be essentially identical over those three times. Call this the true mean. You can think of the 95% confidence interval for the mean based on a limited number of runs as the interval in which there is a 95% chance that the true mean lies. |
Thanks very much Andrew. This is super clear and helpful!! And thanks Tim, too. |
Thanks everyone - think this will be really helpful! |
Following discussion with @andrew-phillips-1 and @joehcollins it seems that some analysts and summarising uncertainty in model results using the 'standard error'.
We could implement this in the utility method
compute_summary_statistics
to provide ease of access. An implementation could be as follows (budding on #1457):A question for @andrew-phillips-1 -- I presume it's only appropriate to use this concept in certain circumstances - what would these be? And also, I presume we should raise an error if sometimes tries to use a summary measure other than mean?
The text was updated successfully, but these errors were encountered: