How can I plot the multiple probability plot for weibull distribution with same shape parameter, but different scale parameter?
9 ビュー (過去 30 日間)
古いコメントを表示
Hi, I am wondering how can I plot the multiple weibull data into one big probability plot
to show that each data have weibull distribution with same shape parameter, but different scale?
suppose
A = wblrnd(1/2 1/2 [1 5]
B = wblrnd(5 1/2 [1 5])
and use probplot or wblplot command to show that this two data have similar distribution.
picture is one of examples from the minitab, and i am trying to show the similar things.

Thank you
0 件のコメント
採用された回答
その他の回答 (1 件)
Daniil Khakhulin
2021 年 12 月 2 日
Try using
probplot (y);
instead of multiple wblplots
It would look something like that
probplot ('weibull', [A B]);
Fro further info refer to https://www.mathworks.com/help/stats/probplot.html?s_tid=srchtitle_probplot_1
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で 베이불(Weibull) 분포 についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!