[10539] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[10847] | 22 | using System;
|
---|
[10244] | 23 | using System.Collections.Generic;
|
---|
[10377] | 24 | using HeuristicLab.Analysis;
|
---|
[10628] | 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
[10244] | 27 |
|
---|
[10539] | 28 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10658] | 29 | public interface IChartLogic {
|
---|
[10382] | 30 |
|
---|
[10733] | 31 | List<DataRow> CreateAllDataRows( DataRowVisualProperties.DataRowChartType chartType);
|
---|
[10382] | 32 |
|
---|
[10628] | 33 | event DataPreprocessingChangedEventHandler Changed;
|
---|
[10382] | 34 |
|
---|
[10847] | 35 | event EventHandler SelectionChanged;
|
---|
| 36 |
|
---|
[10628] | 37 | ICheckedItemList<StringValue> CreateVariableItemList();
|
---|
[10382] | 38 |
|
---|
[10847] | 39 | List<DataRow> CreateAllSelectedDataRows(DataRowVisualProperties.DataRowChartType chartType);
|
---|
| 40 |
|
---|
| 41 | DataRow CreateSelectedDataRow(string variableName, DataRowVisualProperties.DataRowChartType chartType);
|
---|
| 42 |
|
---|
[10658] | 43 | DataRow CreateDataRow(string variableName,DataRowVisualProperties.DataRowChartType chartType);
|
---|
[10382] | 44 |
|
---|
[10803] | 45 | DataRow CreateDataRowRange(string variableName, int start, int end, DataRowVisualProperties.DataRowChartType chartType);
|
---|
| 46 |
|
---|
[10915] | 47 | ScatterPlot CreateScatterPlot(string variableNameX,string variableNameY);
|
---|
[10882] | 48 |
|
---|
[10628] | 49 | string GetVariableNameByIndex(int index);
|
---|
[10867] | 50 |
|
---|
| 51 | IEnumerable<string> GetVariableNames();
|
---|
[10908] | 52 | IEnumerable<string> GetVariableNamesForHistogramClassification();
|
---|
| 53 |
|
---|
| 54 | IEnumerable<double> GetVariableValues(string variableName);
|
---|
[10244] | 55 | }
|
---|
| 56 | }
|
---|