I need to get the Nth quantile of a beta distribution, or equivalently, the 95% or 99% percentile. This is so much easier in Maple, which allows symbolic input -- but how is this done in Python?
I've searched stackoverflow, and it seems that people are often concerned with the normal distribution only.
x=1
is in the 95% percentile? You could usescipy.stats.beta
for this. – Enceladus