Trying to use a prior distribution inside a logarithm

We found a solution! We changed
mu_y = A+Bnp.log10(x - C)
to
mu_y = A+B
np.log10(x.to_list() - C)

And it worked :slight_smile: :grin:

Thanks for your input!