Color Burr distribution function line

2 views (last 30 days)
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)

Accepted Answer

Torsten
Torsten on 1 Nov 2024
Edited: Torsten on 1 Nov 2024
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')

More Answers (0)

Community Treasure Hunt

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

Start Hunting!