Is there a plan to add a 4 parameters beta disterbution?

No plans for that. Why not just create a helper function to do that for you?

def scaled_beta(name, alpha, beta, c, d):
  beta = pm.Beta(f"{name}_raw", alpha, beta)
  return pm.Deterministic(name, beta * c + d)
1 Like