Getting better pdf and histogram
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaire
Réponses (1)
Pratyush Swain
le 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.
0 commentaires
Voir également
Catégories
En savoir plus sur Histograms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!