Getting better pdf and histogram

1 次查看(过去 30 天)
load InsulinReadings.mat
xX2 = InsulinReadings;
xX2(xX2==0)=missing;
A2 = mean(xX2,'all',"omitnan")
B2 = median(xX2,'all',"omitnan")
C2 = max(xX2,[],'all',"omitnan")
D2 = min(xX2,[],'all', "omitnan")
histogram(xX2)
[D PD] = allfitdist(xX2,'PDF');
xlabel('Insulin');
%Now get the CDF
[D PD] = allfitdist(xX2,'CDF');
xlabel('Insulin')

回答(1 个)

Pratyush Swain
Pratyush Swain 2023-11-27
Hi Nathaniel,
I understand you want to obtain a better pdf and histogram for your data. Please refer to https://www.mathworks.com/matlabcentral/answers/593578-calculating-pdf-from-data-set regarding how to obtain pdf from a dataset.
You can also try adjusting histogram properties like 'binwidth','numbins' to obtain a better histogram. For more information,please refer to https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.histogram.html
Hope this helps.

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by