Dear Bayesians,
when I define the following Bambi model:
model = bmb.Model(
"order_amount ~ 0 + age_group + numerical_predictor",
family="gaussian",
data=df_data
)
And call the model.graph() funktion, I get the following plot:
The variables shown here are exactly the data variables that I find in the prior group of the InferenceData object. However, in the posterior group of the InferenceData object, I also find the data variable order_amount_mean
.
I asked myself, why this “implicit” random variable is not plotted in the model.graph() plot. I would have expected it, because it is obviously an important part of my model.
Best regards
Matthias