Color Burr distribution function line

27 次查看(过去 30 天)
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,13:52
编辑:Torsten 2024-11-1,14:11
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')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by