Compare empirical CDF and lognormal CDF
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mos_bad
le 9 Avr 2020
Réponse apportée : Jeff Miller
le 9 Avr 2020
I have a set of data that follows lognormal distribution. I'm trying to compare lognormal and empirical complementary CDF. However, the lognormal CCDF looks like a horizontal line (please see the attached).
here is the code:
[f_sc ,x_sc]=ecdf(SD); % empirical CDF
fit_s=logncdf(sort(SD) , mean(SD) , std(SD) ); % Lognormal CDF
plot(x_sc,1-f_sc,'-k','LineWidth',3); hold on;
plot( sort(SD) , 1-fit_s , '-r' , 'LineWidth', 3 ); hold on;
legend('Empirical CCDF','Lognormal CCDF','FontSize',14,'fontweight','bold','FontName','Time New Roman');
3 commentaires
Ameer Hamza
le 9 Avr 2020
I was referring to the value of variable SD in your code. Did you generated it randomly, or do you have a dataset?
Réponse acceptée
Jeff Miller
le 9 Avr 2020
logncdf wants the mean and sd of the logged scores. Try this:
fit_s=logncdf(sort(SD) , mean(log(SD)) , std(log(SD)) );
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!