Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/14 15:09:26 (10 years ago)
Author:
mleitner
Message:

Add Feature correlation matrix, Add limit for distinct values in histogramm classification.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingChartView.cs

    r10867 r10908  
    4949    private const string DEFAULT_CHART_TITLE = "Chart";
    5050
    51     public List<double> classification { get; set; }
     51    public IEnumerable<double> Classification { get; set; }
    5252
    5353    public PreprocessingChartView() {
     
    8282      }
    8383
    84       //if (!Content.AllInOneMode)
    85         if (Content != null && !Content.AllInOneMode)
     84      if (Content != null && !Content.AllInOneMode)
    8685        GenerateChart();
    8786
     
    336335
    337336          PreprocessingDataTableView dataView = new PreprocessingDataTableView();
    338           dataView.classification = classification;
     337          dataView.Classification = Classification;
    339338          enumerator.MoveNext();
    340339          PreprocessingDataTable d = enumerator.Current;
Note: See TracChangeset for help on using the changeset viewer.