- Timestamp:
- 05/07/14 13:20:12 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsLogic.cs
r10811 r10812 24 24 using System.Linq; 25 25 using HeuristicLab.Common; 26 using System.Collections;27 26 28 27 namespace HeuristicLab.DataPreprocessing { … … 139 138 double variance = double.NaN; 140 139 if (preprocessingData.IsType<double>(columnIndex)) { 141 variance = preprocessingData.GetValues<double>(columnIndex).Variance();140 variance = GetValuesWithoutNaN<double>(columnIndex).Variance(); 142 141 } else if (preprocessingData.IsType<DateTime>(columnIndex)) { 143 142 variance = GetDateTimeAsSeconds(columnIndex).Variance();
Note: See TracChangeset
for help on using the changeset viewer.