Color Burr distribution function line

I create a histogram and I want to include a fitting line around the data. I used a Burr distribution fitting line which matches well. However, when I plot this I am only able to plot "pd" which includes both the histogram data and the fit line. I cannot then find way to change the line color or width of the fit line since pd has both data in it.
Code line is:
pd = fitdist(X,'Burr')
plot(pd)

 採用された回答

Torsten
Torsten 2024 年 11 月 1 日
編集済み: Torsten 2024 年 11 月 1 日

0 投票

pd = makedist('Burr','alpha',1,'c',2,'k',5);
R = random(pd,100,1);
pd = fitdist(R,'Burr');
figure(1)
plot(pd)
x = 0:0.01:2;
figure(2)
hold on
histogram(R,'Normalization','pdf')
plot(x,pdf(pd,x),'Color','g','LineWidth',3)
xlabel('Data')
ylabel('PDF')

1 件のコメント

nirvana316
nirvana316 2024 年 11 月 1 日
Thank you this does exactly what I want

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2024 年 11 月 1 日

コメント済み:

2024 年 11 月 1 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by