Plot on Probability paper (simple X-axis and probability Y-axis)
显示 更早的评论

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?
回答(1 个)
Star Strider
2016-3-25
0 个投票
If you have the Statistics Toolbox, use the probplot function.
6 个评论
KOUSHIK SAHA
2016-3-26
Star Strider
2016-3-26
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
2016-3-26
Star Strider
2016-3-26
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
2020-10-6
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
2022-9-27
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Exploration and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!