Changeset 12199 for stable/HeuristicLab.Analysis.Statistics.Views/3.3
- Timestamp:
- 03/13/15 19:51:32 (10 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12137,12151-12152
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis.Statistics.Views/3.3/CorrelationView.cs
r12009 r12199 56 56 stringConvertibleMatrixView.Minimum = -1.0; 57 57 stringConvertibleMatrixView.Maximum = 1.0; 58 stringConvertibleMatrixView.FormatPattern = "0.000"; 58 59 59 60 methodComboBox.Items.Add(PearsonName); … … 212 213 .Where(x => !double.IsNaN(x) && !double.IsNegativeInfinity(x) && !double.IsPositiveInfinity(x)); 213 214 214 if (!rowValues.Any() || !columnValues.Any() || i == j ||rowValues.Count() != columnValues.Count()) {215 if (!rowValues.Any() || !columnValues.Any() || rowValues.Count() != columnValues.Count()) { 215 216 dt[i, j] = double.NaN; 217 } else if (i == j) { 218 dt[i, j] = 1.0; 216 219 } else { 217 220 if (methodName == PearsonName) {
Note: See TracChangeset
for help on using the changeset viewer.