Combining Predictions and Uncertainty #313
-
If one had to combine predictions from two models in some way, would using nsim on both models and then combining the result be a valid way to get at uncertainty in the combined prediction? For example, combined prediction = model a prediction * model b prediction? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, you absolutely could do that. We did that in this recent paper: https://doi.org/10.1002/pan3.10554 However, a couple caveats. If it's something that can be crammed into one of the existing delta models then that can be done within the model. If we're talking about uncertainty on predictions and space, the fastest way right now is probably to simulate from the model anyways and summarize that (we might have a faster way to do that soon). The most robust way to do this would be with MCMC sampling (rather than by using the |
Beta Was this translation helpful? Give feedback.
Yes, you absolutely could do that. We did that in this recent paper: https://doi.org/10.1002/pan3.10554
However, a couple caveats. If it's something that can be crammed into one of the existing delta models then that can be done within the model. If we're talking about uncertainty on predictions and space, the fastest way right now is probably to simulate from the model anyways and summarize that (we might have a faster way to do that soon). The most robust way to do this would be with MCMC sampling (rather than by using the
nsim
argument to take draws from the parameters assuming an MVN distribution), although that can be slow for big models (and if all you are trying to do is visualize …