I have a set of proportion data between 0 and 1, working in R.
Let's say that I have fitted a mixture of a beta and a degenerate distribution. This means that I write the density as something like this :
$F(x) = pF_0(x) + (1-p)F_{\theta}(x)$
where I call $F_0$ the degenerate distribution in 0 and $F_{\theta}$ the beta distribution with the parameters $\theta = (a,b)$. $p$ is the mixing percentage between the two distribution.
So let's say that I manage to find my 3 parameters $p,a,b$ then I would like to deduce some quantile values (95% for example) as one can do by fitting for example a simple beta distribution $\beta(a,b)$ (using the fitdistrplus package for example).
How can I manage to do this ? Is this even meaningful for this kind of mixture distribution ?
I think yes it is (but I'm not sure) because I'm using it in a context of zero-inflated beta distribution, and having several zero-values should influence the quantile value accordingly (because I want to take the multiple zero-values into account, as they are important information).