• MATLAB remove outliers.


    Answer by Richard Willey on 9 Jan 2012
    
    

    Hi Michael

    MATLAB doesn't provide a specific function to remove outliers. In general you have a couple different options to deal with outliers.

    1. You can create an index that flags potential outliers and either delete them from your data set or substitute more plausible values

    2. You can use robust techniques like robust regression which are less sensitive to the presence of outliers.

    Your choice of strategies will depend a lot on your knowledge about the data set. For example, if you have a lot of data points that are coded with a value like -9999 these are probably error codes of some kind rather than actual numeric information.

    I'm including some simple example code which shows a standard technique to detect outliers.


    =====================
    % Create a vector of X values clear all clc hold off
    X = 1:100;
    X = X';
    
    % Create a noise vector
    noise = randn(100,1);
    
    % Create a second noise value where sigma is much larger
    noise2 = 10*randn(100,1);
    
    % Substitute noise2 for noise1 at obs# (11, 31, 51, 71, 91)
    % Many of these points will have an undue influence on the model 
    
    noise(11:20:91) = noise2(11:20:91);
    
    % Specify Y = F(X)
    Y = 3*X + 2 + noise;
    
    % Cook's Distance for a given data point measures the extent to 
    % which a regression model would change if this data point 
    % were excluded from the regression. Cook's Distance is 
    % sometimes used to suggest whether a given data point might be an outlier.
    
    % Use regstats to calculate Cook's Distance
    stats = regstats(Y,X,'linear');
    
    % if Cook's Distance > n/4 is a typical treshold that is used to suggest
    % the presence of an outlier
    potential_outlier = stats.cookd > 4/length(X);
    
    % Display the index of potential outliers and graph the results
    X(potential_outlier)
    scatter(X,Y, 'b.')
    hold on
    scatter(X(potential_outlier),Y(potential_outlier), 'r.')
  • 相关阅读:
    泛型类,泛型方法的使用
    Mapper注解与MapperScan注解
    Configuration注解
    LA 4254 Processor (二分 + 贪心)
    UVa 10382 Watering Grass (贪心 区间覆盖)
    UVA 10795 A Different Task (递归)
    LA 3401 Colored Cubes (搜索 + 暴力)
    uva11464 Even Parity (枚举+递推)
    icpc2021 昆明 K (dfs爆搜)
    hdu3533 (bfs + 模拟)
  • 原文地址:https://www.cnblogs.com/gisalameda/p/6041714.html
Copyright © 2020-2023  润新知