Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15594


Ignore:
Timestamp:
01/11/18 10:59:59 (6 years ago)
Author:
pfleck
Message:

#2640 Hotfix data preprocessing (median instead of mean)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/Data/FilteredPreprocessingData.cs

    r15583 r15594  
    288288    }
    289289    public T GetMedian<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T)) where T : IComparable<T> {
    290       return ActiveData.GetMean<T>(columnIndex, considerSelection, emptyValue);
     290      return ActiveData.GetMedian<T>(columnIndex, considerSelection, emptyValue);
    291291    }
    292292    public T GetMode<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T)) where T : IEquatable<T> {
Note: See TracChangeset for help on using the changeset viewer.