I’m working with a beta distribution, how can i plot it’s CDF? I cant find anything on the docs.
This is my code.
with pm.Model() as model:
A = pm.Beta("A", alpha=alpha, beta=beta)
pred =pm.sample_prior_predictive(samples=1000)
I’m working with a beta distribution, how can i plot it’s CDF? I cant find anything on the docs.
This is my code.
with pm.Model() as model:
A = pm.Beta("A", alpha=alpha, beta=beta)
pred =pm.sample_prior_predictive(samples=1000)