Weighting indices by other models #349
-
I want to weight an index from model A with density predictions from model B. Is there any way to propogate the uncertainty in model B's predictions (and thus weighting) into the uncertainty of the model A index? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I don't know that I'm totally following this, but I think yes. I think you could make predictions from model B with |
Beta Was this translation helpful? Give feedback.
-
Using inverse variance weights will achieve the goal of relative weighting based on uncertainty, which might be what you're looking for, but won't propagate the full parameter uncertainty, right? To fully propagate the uncertainty, your options would be to
|
Beta Was this translation helpful? Give feedback.
I don't know that I'm totally following this, but I think yes. I think you could make predictions from model B with
se_fit
= TRUE (or use thensim
argument). The SEs could then be used to generate inverse variance weights. These inverse variance weights can then be multiplied by the area of cells for the prediction grid and passed intoget_index()
for model A.