I know that some random variable X is distributed as X ~ Beta(p,q). I want to find values of this distribution corresponding to the 90th and 95th percentiles. The function quantile() in R requires that you enter a data vector, but I specifically want to compute these quantiles without needing to generate an enormous sample from this distribution to plug into the quantile() function.
Is there a way to do this by just specifying the parameters of the beta distribution?
help("qbeta")
– Roland