Plot on Probability paper (simple X-axis and probability Y-axis)
Mostrar comentarios más antiguos

Grain size
-1
-0.5
0
0.5
1
1.5
2
2.5
3
3.5
4
4.5
5
percentage values
28.56
41.25
46.94
52.14
59.82
74.26
90.12
98.24
99.78
99.87
99.93
99.99
100.00
These are the Grain size(-1 to 5) and percentage values(up to 100).Please help me by suggesting how to plot these kind of graph having simple X-axis and probability Y-axis?
Respuestas (1)
Star Strider
el 25 de Mzo. de 2016
0 votos
If you have the Statistics Toolbox, use the probplot function.
6 comentarios
KOUSHIK SAHA
el 26 de Mzo. de 2016
Star Strider
el 26 de Mzo. de 2016
The probplot function is for raw data. If you already have the probabilities, you don’t need probplot. Just use plot. The advantage of using probplot with raw data is the axis scaling.
KOUSHIK SAHA
el 26 de Mzo. de 2016
Star Strider
el 26 de Mzo. de 2016
My pleasure.
The only way I know of to do that is to take the inverse normal distribution of your probabilities and plot them:
x=[-1 -0.5 0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5];
y=[28.56 41.25 46.94 52.14 59.82 74.26 90.12 98.24 99.78 99.87 99.93 99.99 100.00];
yinv = norminv(y/101, 0, 1); % Take Inverse Normal Probability of ‘y’
figure(1)
probplot(yinv)
grid
I don’t know if this give you the result you want, but it’s the only solution I can provide with the data you posted.
Peter Bohn
el 6 de Oct. de 2020
It doesn't seem like this question has been answered completely.
Is there a way to change the scale of the y axis of the normal plot() function to mimick a normal probability distribution?
I have the same issue the person asking the question has. I have x and y data, but it is standard practice to use probability paper for ploting the distribution of grain sizes in sand samples.
Abigail Cafferty
el 27 de Sept. de 2022
I also am looking for a way to make the x axis have probability scaling, instead of the y. From what it seems, you can only use the normplot() function to scale the y axis.
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!