Getting Interpretable Values for Posterior Draws of Parameters with Link Functions #605
-
Most of my model parameters use link functions to maintain bounds but this makes it pretty difficult to interpret values or do custom simulations. I can get average values for the transformed parameters using the Bambi "interpret.predictions" method. Is there an equivalent to get transformed values for each posterior draw instead? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @theonlydvr, HSSM is a wrapper for Bambi, so you can use all bambi utilities. All you need is to access the bambi model through Please let us know if this works |
Beta Was this translation helpful? Give feedback.
-
check out the You can use those directly for simulation downstream. |
Beta Was this translation helpful? Give feedback.
@theonlydvr,
check out the
add_likelihood_parameters_to_idata()
function.This will add the trial wise parameters to the posterior (post link).
You can use those directly for simulation downstream.