Suppose I have the following model:
with pm.Model():
mu = pm.constant(5)
sigma = pm.LogNormal(“sigma”,mu=0, sigma=1)
x = pm.Normal(“x”, mu=mu, sigma=sigma)
Now I would like to be able to run the model with the established parameters but also see what happens as I change mu to various constant values, say a list of integers from 5 to 20. What would be the best way to do this? If this is a silly question or has been stated elsewhere, my apologies.