Plot cumulative distribution function

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)
1 Like

You can use arviz’s plot_dist(), setting the cumulative argument to True. Does that work?

1 Like