I would like to make a log-probability plot for my data. I looked up the probplot function and wrote this code
x = [0.3,1, 2,5, 2];
probplot('lognormal',x)
I would like it to show the grid lines like this plot
http://www.mathworks.com/help/toolbox/stats/wblplot.html
and also relabel x-tickmark at 0, 1 (instead of 10^0), and 100
Thank you for your help!
There you go:
Hope that helps 🙂