what is the relationship between noise and outliers ??
Afficher commentaires plus anciens
i know the difference between noise and outlier but i want to know the relationships of them and the effects of noises ... are they cause outliers? and if you know the link of data-sets with outliers please give me the links. thank you
Réponse acceptée
Plus de réponses (2)
Bjorn Gustavsson
le 9 Oct 2015
Modifié(e) : Bjorn Gustavsson
le 9 Oct 2015
Outliers are (very loosely speaking) noise with very large deviations from the expected values. This might be because your noise distribution has very long tails - this might give you a few observations where the noise-contribution becomes very large. From an observation viewpoint outliers might also be caused by malfunctioning/disturbances to your observation system that otherwise has a very nice and well-behaved noise characteristics. So in reality everything becomes complicated. To make yourself a data-set you can do something like this:
x = linspace(0,100,1001);
d = 12 + x/10+x.^2/100 + ...
2*sin(2*pi/100*3*x) + ...
0.5*randn(size(x)) + 10*sprandn(1,length(x),0.03).^2;
Adjust the distributions of the "noise" and the "outliers" to suit your needs.
HTH
Thorsten
le 9 Oct 2015
0 votes
You need a model of your data. There is no general relation between noise and outliers. You may find the following useful http://charuaggarwal.net/outlierbook.pdf
Catégories
En savoir plus sur t Location-Scale Distribution dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!