Histogram normalisation: a question about terminology

Let's consider the histogram and histcounts functions, as in these two cases:
num_bins = 30; % <-- note: I specify the "number of bins" and not the "bin width", which can be different from 1
% Case 1
histcounts(X,num_bins,'Normalization','probability');
histogram(X,'NumBins',num_bins,'Normalization','probability');
% Case 2
histcounts(X,num_bins,'Normalization','pdf');
histogram(X,'NumBins',num_bins,'Normalization','pdf');
Do I understand correctly that
  1. For Case 1, I get the "Relative Frequency Histogram" or an "empirical estimate of the Probability Mass Function"?
  2. For Case 2, - where I divide by the bin widths as well -, I get the an "empirical estimate of the Probability Density Function"?

답변 (1개)

Satwik Samayamantry
Satwik Samayamantry 2023년 7월 14일

0 개 추천

Hi Sim,
Yeah you got it right. Your understanding for both cases is correct.

댓글 수: 3

Sim
Sim 2023년 8월 1일
편집: Sim 2023년 8월 1일
Thanks for your comment @Satwik Samayamantry! Before accepting your answer, do you know/have some reference supporting your answer?
See the description of the Normalization name-value argument on either of the histogram or histcounts documentation pages. It describes exactly what the Values property of the histogram or the first output of the histcounts function represent.
thanks @Steven Lord :-)

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

질문:

Sim
2023년 7월 14일

댓글:

Sim
2023년 8월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by