How to deal with NaN statistical analysis?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tony Castillo
le 2 Mar 2020
Commenté : Tony Castillo
le 2 Mar 2020
First block
[cmin, indice_min]=min(IRR(:,4));
min_dia=IRR(indice_min, 1:3);
disp(min_dia)
Second block
[cmean, indice_mean]=mean(IRR(:,4), ('omitnan')); %
mean_dia=IRR(indice_mean, 2:3);
disp(mean_dia)
Dear all,
I have been analysing a dataset, whereas I have noticed that for some statistical operations such as "min", "max", and also "mode", there are not problems if datastes contains blank spaces ("NaN"), nonetheless, for "median" as well as "mean" the statistical MATLAB functions present some issues, even if I include in the code 'omitnan'. The structure portrayed at "First Block" works correctly, nevertheless, "Second block" does not work properly presenting some issues. Would you helping me with this?
I hope you can help me to cope with this problem.
Sincerely,
2 commentaires
Adam
le 2 Mar 2020
You didn't tell us what the issues are and we don't have the data to run your code.
Réponse acceptée
Jonas Allgeier
le 2 Mar 2020
Mean only gives you a single output argument, the mean value; so requesting a second output argument will not work.
6 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur NaNs 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!