Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/14 11:12:31 (10 years ago)
Author:
mleitner
Message:

Add colors to histogram / remove all in one mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ChartLogic.cs

    r10851 r10867  
    2222using System;
    2323using System.Collections.Generic;
     24using System.Linq;
    2425using System.Drawing;
    2526using HeuristicLab.Analysis;
     
    6869    }
    6970
     71    public List<double> GetVariableValues(string variableName) {
     72      return preprocessingData.GetValues<double>(preprocessingData.GetColumnIndex(variableName)).ToList();
     73    }
    7074
    71 
    72     private IEnumerable<string> GetVariableNames() {
     75    public IEnumerable<string> GetVariableNames() {
    7376      List<string> doubleVariableNames = new List<string>();
    7477
     
    118121        if(row != null)
    119122          dataRows.Add(row);
    120       }
     123  }
    121124      return dataRows;
    122125    }
Note: See TracChangeset for help on using the changeset viewer.