Getting better pdf and histogram

조회 수: 4 (최근 30일)
Nathaniel Porter
Nathaniel Porter 2022년 2월 24일
답변: Pratyush Swain 2023년 11월 27일
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