cdfplot and ecdf differences

19 visualizaciones (últimos 30 días)
Shahil Khan
Shahil Khan el 15 de Ag. de 2021
Comentada: Shahil Khan el 15 de Ag. de 2021
Im having some difficulty distinguishing the differences between ecdf and cdfplot. I understand that ecdf calculates it and cdfplot calculates and plots it. The plots they generate are different and produce different stats (mean, median, etc)
My question is, which one is more applicable to use? Are there any differences between these two commands?. Code and graphs to follow.
s = stats_table.Circularity;
histogram(s, 'BinWidth',0.09, ...
'Normalization','cdf')
figure
[f,x] = ecdf(s);
hold on;
plot(x,f)
histogram(s, 'BinWidth',0.09, ...
'Normalization','cdf')
hold off
figure
hold on
[h, stats] = cdfplot(s);
histogram(s, 'BinWidth',0.09, ...
'Normalization','cdf')
hold off

Respuesta aceptada

Ive J
Ive J el 15 de Ag. de 2021
Editada: Ive J el 15 de Ag. de 2021
They're the same (see cdfplot doc), the empirical CDF values are supposed to be used in stairs and not plot (smoothed)
rng('default') % For reproducibility
y = evrnd(0,3,100,1);
cdfplot(y)
hold on
[f, x] = ecdf(y);
stairs(x, f, 'r--')
legend('cdfplot', 'ecdf')

Más respuestas (0)

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by