Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 17:27:27 (10 years ago)
Author:
aesterer
Message:

Revised line chart and added histogram

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IHistogramLogic.cs

    r10539 r10552  
    2121
    2222
     23using System.Collections.Generic;
     24using HeuristicLab.Analysis;
     25
    2326namespace HeuristicLab.DataPreprocessing {
    2427  public interface IHistogramLogic {
     28    void RemoveVariable(string name);
     29
     30    void AddVariable(string name);
     31
     32    IEnumerable<object> GetVariableNames();
     33
     34    DataTable GetDataTable();
     35
     36    bool VariableIsDisplayed(string name);
    2537  }
    2638}
Note: See TracChangeset for help on using the changeset viewer.