[10157] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15584] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10157] | 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 |
|
---|
[10367] | 22 | using System;
|
---|
[10157] | 23 | using System.Collections.Generic;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
[10220] | 25 | using HeuristicLab.Data;
|
---|
[10163] | 26 | using HeuristicLab.Problems.DataAnalysis;
|
---|
[10157] | 27 |
|
---|
[10182] | 28 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10157] | 29 | public interface IPreprocessingData : INamedItem {
|
---|
[15535] | 30 | #region Cells
|
---|
| 31 | bool IsCellEmpty(int columnIndex, int rowIndex);
|
---|
[10367] | 32 | T GetCell<T>(int columnIndex, int rowIndex);
|
---|
[10157] | 33 |
|
---|
[10367] | 34 | void SetCell<T>(int columnIndex, int rowIndex, T value);
|
---|
| 35 |
|
---|
| 36 | string GetCellAsString(int columnIndex, int rowIndex);
|
---|
| 37 |
|
---|
[10811] | 38 | IList<T> GetValues<T>(int columnIndex, bool considerSelection = false);
|
---|
[10367] | 39 |
|
---|
| 40 | void SetValues<T>(int columnIndex, IList<T> values);
|
---|
[11002] | 41 | bool SetValue(string value, int columnIndex, int rowIndex);
|
---|
[10181] | 42 |
|
---|
[15535] | 43 | int Columns { get; }
|
---|
| 44 | int Rows { get; }
|
---|
| 45 | #endregion
|
---|
| 46 |
|
---|
| 47 | #region Rows
|
---|
[10157] | 48 | void InsertRow(int rowIndex);
|
---|
| 49 | void DeleteRow(int rowIndex);
|
---|
[11002] | 50 | void DeleteRowsWithIndices(IEnumerable<int> rows);
|
---|
[10194] | 51 | void InsertColumn<T>(string variableName, int columnIndex);
|
---|
[10367] | 52 |
|
---|
| 53 | void DeleteColumn(int columnIndex);
|
---|
[10157] | 54 |
|
---|
[13252] | 55 | void RenameColumn(int columnIndex, string name);
|
---|
| 56 | void RenameColumns(IList<string> names);
|
---|
| 57 |
|
---|
[11002] | 58 | bool AreAllStringColumns(IEnumerable<int> columnIndices);
|
---|
[15535] | 59 | #endregion
|
---|
[11068] | 60 |
|
---|
[15535] | 61 | #region Variables
|
---|
[10243] | 62 | IEnumerable<string> VariableNames { get; }
|
---|
[10992] | 63 | IEnumerable<string> GetDoubleVariableNames();
|
---|
[10243] | 64 | string GetVariableName(int columnIndex);
|
---|
[10367] | 65 | int GetColumnIndex(string variableName);
|
---|
| 66 |
|
---|
[11156] | 67 | bool VariableHasType<T>(int columnIndex);
|
---|
[15535] | 68 | Type GetVariableType(int columnIndex);
|
---|
[10159] | 69 |
|
---|
[14963] | 70 | IList<string> InputVariables { get; }
|
---|
| 71 | string TargetVariable { get; } // optional
|
---|
[15535] | 72 | #endregion
|
---|
[14963] | 73 |
|
---|
[15535] | 74 | #region Partitions
|
---|
| 75 | IntRange TrainingPartition { get; }
|
---|
| 76 | IntRange TestPartition { get; }
|
---|
| 77 | #endregion
|
---|
[10163] | 78 |
|
---|
[15535] | 79 | #region Transformations
|
---|
| 80 | IList<ITransformation> Transformations { get; }
|
---|
| 81 | #endregion
|
---|
| 82 |
|
---|
| 83 | #region Validation
|
---|
| 84 | bool Validate(string value, out string errorMessage, int columnIndex);
|
---|
| 85 | #endregion
|
---|
| 86 |
|
---|
| 87 | #region Import & Export
|
---|
| 88 | void Import(IDataAnalysisProblemData problemData);
|
---|
[10220] | 89 | Dataset ExportToDataset();
|
---|
[15535] | 90 | #endregion
|
---|
[10804] | 91 |
|
---|
[15535] | 92 | #region Selection
|
---|
[10978] | 93 | IDictionary<int, IList<int>> Selection { get; set; }
|
---|
[10804] | 94 | void ClearSelection();
|
---|
| 95 |
|
---|
| 96 | event EventHandler SelectionChanged;
|
---|
[15535] | 97 | #endregion
|
---|
| 98 |
|
---|
| 99 | #region Transactions
|
---|
| 100 | event DataPreprocessingChangedEventHandler Changed;
|
---|
| 101 |
|
---|
| 102 | bool IsUndoAvailable { get; }
|
---|
| 103 | void Undo();
|
---|
| 104 | void InTransaction(Action action, DataPreprocessingChangedEventType type = DataPreprocessingChangedEventType.Any);
|
---|
| 105 | void BeginTransaction(DataPreprocessingChangedEventType type);
|
---|
| 106 | void EndTransaction();
|
---|
| 107 | #endregion
|
---|
| 108 |
|
---|
| 109 | #region Statistics
|
---|
| 110 | T GetMin<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T));
|
---|
| 111 | T GetMax<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T));
|
---|
| 112 | T GetMean<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T));
|
---|
| 113 | T GetMedian<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T)) where T : IComparable<T>;
|
---|
| 114 | T GetMode<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T)) where T : IEquatable<T>;
|
---|
| 115 | T GetStandardDeviation<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T));
|
---|
| 116 | T GetVariance<T>(int columnIndex, bool considerSelection = false, T emptyValue = default(T));
|
---|
| 117 | T GetQuantile<T>(double alpha, int columnIndex, bool considerSelection = false, T emptyValue = default(T)) where T : IComparable<T>;
|
---|
| 118 | int GetDistinctValues<T>(int columnIndex, bool considerSelection = false);
|
---|
| 119 |
|
---|
| 120 | int GetMissingValueCount();
|
---|
| 121 | int GetMissingValueCount(int columnIndex);
|
---|
| 122 | int GetRowMissingValueCount(int rowIndex);
|
---|
| 123 | #endregion
|
---|
[10157] | 124 | }
|
---|
| 125 | }
|
---|