How to plot confidence bounds for a theoretical cumulative distribution function?
Mostrar comentarios más antiguos
I understand how to plot upper and lower confidence bounds for an experimental cumulative distribution function using the ecdf function.
But how to plot upper and lower confidence bounds for a theoretical cumulative distribution like for example the Theoretical CDF in the plot shown below? (copied from: https://www.mathworks.com/help/stats/cdfplot.html)

6 comentarios
Paul
el 6 de Ag. de 2021
What do you mean by confidence bounds on the theoretical CDF? The theoretical CDF isn't estimated, so how can it have confidence bounds?
Eric-Jan Scharlee
el 6 de Ag. de 2021
I see. I was confused because "the parametric proability distribution" is not the same thing as the "Theorectical CDF" in the plot from that link.
If you're interested in fitting a PDF to the data, check out the function fitdist(), which returns confidence intervals for the distribution parameters (at least for some of the distributions).
Eric-Jan Scharlee
el 6 de Ag. de 2021
Eric-Jan Scharlee
el 6 de Ag. de 2021
Paul
el 6 de Ag. de 2021
I don't know if there is a way to do what you want; but I'm far from an expert on such things. Having said that, my intuition is that fitting a distribution is an exercise in estimating the parameters of the distribution, and that's why fitdist only returns the CI's around the parameters, i.e., it's only those parameters that are being estimated. In contrast, the ecdf() function is estimating something at each value in the xdata, so there it seems reasonable to come up with a CI around each estimate, which is what the dotted curves are in that plot. I'll be interested to see other answers to your question.
Respuestas (1)
Jeff Miller
el 6 de Ag. de 2021
0 votos
For a given X value, the theoretical cumulative probability is p = F(X). Suppose you have a sample of N observations and you let k be the number of observations <= X. k is (by definition) binomial(N,p) with the known N and that theoretical p. Using that binomial distribution, you can get upper and lower confidence limits on the observed k (e.g., with a normal approximation to the binomial). Then divide those upper and lower lilmits on k by N and you will have upper and lower confidence limits on p for that X value.
4 comentarios
Eric-Jan Scharlee
el 6 de Ag. de 2021
Jeff Miller
el 6 de Ag. de 2021
It's a little bit tricky because the binomial is discrete. But say you want a 95% confidence interval (i.e., 2.5% below the cutoff and 2.5% above). Then at a given X with it's associated p,
lower_k = binoinv(0.025,N,p) - 1; % -1 because of discreteness
upper_k = binoinv(0.975,N,p);
lower_k will have less than 0.025 of the probability at or below it, and upper_k will have less at or above.
Then divide these k bounds by N to get probability bounds.
HTH
Paul
el 6 de Ag. de 2021
Based on the comment chain in the question, it sounds like @Eric-Jan Scharlee wants to fit a specified CDF (e.g,. Weibull) to some data, and then show a confidence interval around the fitted distribution. Is that the process you're describing?
Jeff Miller
el 6 de Ag. de 2021
Thanks for the clarification, @Paul. I misunderstood the original question as pertaining to a known theoretical distribution (i.e., with known parameter values). No, the process I am describing does not apply to fitted distributions.
@Eric-Jan Scharlee As Paul says, CIs around parameter estimates are standard, but CIs around a fitted CDF are not. I am not even sure how that would be defined. I suppose you could generate a range of CDFs with different combinations of parameter values within the parameter CIs and take the extremes of those (at each X) as some kind of theoretical CI, but that's really ad hoc. To me, it seems better to focus on the CIs from the ecdf.
Categorías
Más información sobre Exploration and Visualization en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!