Getting better pdf and histogram

3 Ansichten (letzte 30 Tage)
Nathaniel Porter
Nathaniel Porter am 24 Feb. 2022
Beantwortet: Pratyush Swain am 27 Nov. 2023
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')

Antworten (1)

Pratyush Swain
Pratyush Swain am 27 Nov. 2023
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.

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by