[10163] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10163] | 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 |
|
---|
| 22 | using System;
|
---|
[10168] | 23 | using System.Collections;
|
---|
[10163] | 24 | using System.Collections.Generic;
|
---|
[10185] | 25 | using System.Linq;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
[10163] | 27 | using HeuristicLab.Core;
|
---|
[10220] | 28 | using HeuristicLab.Data;
|
---|
[10163] | 29 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 30 |
|
---|
[10182] | 31 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10550] | 32 |
|
---|
[10163] | 33 | [Item("PreprocessingData", "Represents data used for preprocessing.")]
|
---|
[10978] | 34 | public abstract class PreprocessingData : NamedItem, IPreprocessingData {
|
---|
[10163] | 35 |
|
---|
[10994] | 36 | public IntRange TrainingPartition { get; set; }
|
---|
| 37 | public IntRange TestPartition { get; set; }
|
---|
[10978] | 38 |
|
---|
| 39 | protected IList<ITransformation> transformations;
|
---|
| 40 | public IList<ITransformation> Transformations {
|
---|
| 41 | get { return transformations; }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[10740] | 44 | protected IList<IList> variableValues;
|
---|
[10586] | 45 | protected IList<string> variableNames;
|
---|
[10168] | 46 |
|
---|
[10978] | 47 | public IEnumerable<string> VariableNames {
|
---|
| 48 | get { return variableNames; }
|
---|
| 49 | }
|
---|
[10186] | 50 |
|
---|
[10992] | 51 | public IEnumerable<string> GetDoubleVariableNames() {
|
---|
| 52 | var doubleVariableNames = new List<string>();
|
---|
| 53 | for (int i = 0; i < Columns; ++i) {
|
---|
[11156] | 54 | if (VariableHasType<double>(i)) {
|
---|
[10992] | 55 | doubleVariableNames.Add(variableNames[i]);
|
---|
| 56 | }
|
---|
| 57 | }
|
---|
| 58 | return doubleVariableNames;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[10978] | 61 | public int Columns {
|
---|
| 62 | get { return variableNames.Count; }
|
---|
| 63 | }
|
---|
[10695] | 64 |
|
---|
[10978] | 65 | public int Rows {
|
---|
| 66 | get { return variableValues.Count > 0 ? variableValues[0].Count : 0; }
|
---|
| 67 | }
|
---|
[10804] | 68 |
|
---|
[10978] | 69 | protected IDictionary<int, IList<int>> selection;
|
---|
| 70 | public IDictionary<int, IList<int>> Selection {
|
---|
| 71 | get { return selection; }
|
---|
| 72 | set {
|
---|
[10992] | 73 | selection = value;
|
---|
| 74 | OnSelectionChanged();
|
---|
| 75 | }
|
---|
| 76 | }
|
---|
[10978] | 77 |
|
---|
[10586] | 78 | protected PreprocessingData(PreprocessingData original, Cloner cloner)
|
---|
[10185] | 79 | : base(original, cloner) {
|
---|
[10550] | 80 | variableValues = CopyVariableValues(original.variableValues);
|
---|
[10548] | 81 | variableNames = new List<string>(original.variableNames);
|
---|
[10994] | 82 | TrainingPartition = (IntRange)original.TrainingPartition.Clone(cloner);
|
---|
| 83 | TestPartition = (IntRange)original.TestPartition.Clone(cloner);
|
---|
[10842] | 84 | transformations = new List<ITransformation>();
|
---|
[10994] | 85 |
|
---|
| 86 | RegisterEventHandler();
|
---|
[10185] | 87 | }
|
---|
[10187] | 88 |
|
---|
[10978] | 89 | protected PreprocessingData(IDataAnalysisProblemData problemData)
|
---|
[10168] | 90 | : base() {
|
---|
[10786] | 91 | Name = "Preprocessing Data";
|
---|
[10168] | 92 |
|
---|
[10786] | 93 | transformations = new List<ITransformation>();
|
---|
[10978] | 94 | selection = new Dictionary<int, IList<int>>();
|
---|
[10786] | 95 |
|
---|
[13502] | 96 | Import(problemData);
|
---|
| 97 |
|
---|
| 98 | RegisterEventHandler();
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | public void Import(IDataAnalysisProblemData problemData) {
|
---|
[12509] | 102 | Dataset dataset = (Dataset)problemData.Dataset;
|
---|
[10187] | 103 | variableNames = new List<string>(problemData.Dataset.VariableNames);
|
---|
| 104 |
|
---|
[10367] | 105 | int columnIndex = 0;
|
---|
[10740] | 106 | variableValues = new List<IList>();
|
---|
[10185] | 107 | foreach (var variableName in problemData.Dataset.VariableNames) {
|
---|
[11156] | 108 | if (dataset.VariableHasType<double>(variableName)) {
|
---|
[11002] | 109 | variableValues.Insert(columnIndex, dataset.GetDoubleValues(variableName).ToList());
|
---|
[11156] | 110 | } else if (dataset.VariableHasType<string>(variableName)) {
|
---|
[11002] | 111 | variableValues.Insert(columnIndex, dataset.GetStringValues(variableName).ToList());
|
---|
[11156] | 112 | } else if (dataset.VariableHasType<DateTime>(variableName)) {
|
---|
[11002] | 113 | variableValues.Insert(columnIndex, dataset.GetDateTimeValues(variableName).ToList());
|
---|
[10168] | 114 | } else {
|
---|
[10978] | 115 | throw new ArgumentException("The datatype of column " + variableName + " must be of type double, string or DateTime");
|
---|
[10168] | 116 | }
|
---|
[10367] | 117 | ++columnIndex;
|
---|
[10168] | 118 | }
|
---|
[10185] | 119 |
|
---|
[10994] | 120 | TrainingPartition = new IntRange(problemData.TrainingPartition.Start, problemData.TrainingPartition.End);
|
---|
| 121 | TestPartition = new IntRange(problemData.TestPartition.Start, problemData.TestPartition.End);
|
---|
[10163] | 122 | }
|
---|
| 123 |
|
---|
[10994] | 124 | private void RegisterEventHandler() {
|
---|
| 125 | Changed += (s, e) => {
|
---|
| 126 | switch (e.Type) {
|
---|
| 127 | case DataPreprocessingChangedEventType.DeleteRow:
|
---|
| 128 | CheckPartitionRanges();
|
---|
| 129 | break;
|
---|
| 130 | case DataPreprocessingChangedEventType.Any:
|
---|
| 131 | CheckPartitionRanges();
|
---|
| 132 | break;
|
---|
| 133 | case DataPreprocessingChangedEventType.Transformation:
|
---|
| 134 | CheckPartitionRanges();
|
---|
| 135 | break;
|
---|
| 136 | }
|
---|
| 137 | };
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | private void CheckPartitionRanges() {
|
---|
| 141 | int maxRowIndex = Math.Max(0, Rows - 1);
|
---|
| 142 | TrainingPartition.Start = Math.Min(TrainingPartition.Start, maxRowIndex);
|
---|
| 143 | TrainingPartition.End = Math.Min(TrainingPartition.End, maxRowIndex);
|
---|
| 144 | TestPartition.Start = Math.Min(TestPartition.Start, maxRowIndex);
|
---|
| 145 | TestPartition.End = Math.Min(TestPartition.End, maxRowIndex);
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[10740] | 148 | protected IList<IList> CopyVariableValues(IList<IList> original) {
|
---|
[10783] | 149 | var copy = new List<IList>(original);
|
---|
[10740] | 150 | for (int i = 0; i < original.Count; ++i) {
|
---|
[10783] | 151 | copy[i] = (IList)Activator.CreateInstance(original[i].GetType(), original[i]);
|
---|
[10550] | 152 | }
|
---|
| 153 | return copy;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
[10163] | 156 |
|
---|
| 157 | #region IPreprocessingData Members
|
---|
| 158 |
|
---|
[10991] | 159 | public abstract T GetCell<T>(int columnIndex, int rowIndex);
|
---|
[10181] | 160 |
|
---|
[10991] | 161 | public abstract void SetCell<T>(int columnIndex, int rowIndex, T value);
|
---|
[10367] | 162 |
|
---|
[10991] | 163 | public abstract string GetCellAsString(int columnIndex, int rowIndex);
|
---|
[10367] | 164 |
|
---|
[10991] | 165 | public abstract string GetVariableName(int columnIndex);
|
---|
[10547] | 166 |
|
---|
[10991] | 167 | public abstract int GetColumnIndex(string variableName);
|
---|
[10978] | 168 |
|
---|
[11156] | 169 | public abstract bool VariableHasType<T>(int columnIndex);
|
---|
[10978] | 170 |
|
---|
[10367] | 171 | [Obsolete("use the index based variant, is faster")]
|
---|
[10991] | 172 | public abstract IList<T> GetValues<T>(string variableName, bool considerSelection);
|
---|
[10181] | 173 |
|
---|
[10991] | 174 | public abstract IList<T> GetValues<T>(int columnIndex, bool considerSelection);
|
---|
[10367] | 175 |
|
---|
[10991] | 176 | public abstract void SetValues<T>(int columnIndex, IList<T> values);
|
---|
[10181] | 177 |
|
---|
[11002] | 178 | public abstract bool SetValue(string value, int columnIndex, int rowIndex);
|
---|
| 179 |
|
---|
| 180 | public abstract bool Validate(string value, out string errorMessage, int columnIndex);
|
---|
| 181 |
|
---|
| 182 | public abstract bool AreAllStringColumns(IEnumerable<int> columnIndices);
|
---|
| 183 |
|
---|
| 184 | public abstract void DeleteRowsWithIndices(IEnumerable<int> rows);
|
---|
| 185 |
|
---|
[10991] | 186 | public abstract void InsertRow(int rowIndex);
|
---|
[10163] | 187 |
|
---|
[10991] | 188 | public abstract void DeleteRow(int rowIndex);
|
---|
[10163] | 189 |
|
---|
[10991] | 190 | public abstract void InsertColumn<T>(string variableName, int columnIndex);
|
---|
[10163] | 191 |
|
---|
[10991] | 192 | public abstract void DeleteColumn(int columnIndex);
|
---|
[10367] | 193 |
|
---|
[13252] | 194 | public abstract void RenameColumn(int columnIndex, string name);
|
---|
| 195 | public abstract void RenameColumns(IList<string> list);
|
---|
| 196 |
|
---|
[10991] | 197 | public abstract Dataset ExportToDataset();
|
---|
[10367] | 198 |
|
---|
[10991] | 199 | public abstract void ClearSelection();
|
---|
[10220] | 200 |
|
---|
[10991] | 201 | public abstract event EventHandler SelectionChanged;
|
---|
| 202 | protected abstract void OnSelectionChanged();
|
---|
[10220] | 203 |
|
---|
[10978] | 204 | public event DataPreprocessingChangedEventHandler Changed;
|
---|
[10992] | 205 | protected virtual void OnChanged(DataPreprocessingChangedEventType type, int column, int row) {
|
---|
[10978] | 206 | var listeners = Changed;
|
---|
| 207 | if (listeners != null) listeners(this, new DataPreprocessingChangedEventArgs(type, column, row));
|
---|
[10804] | 208 | }
|
---|
[10220] | 209 | #endregion
|
---|
[10163] | 210 | }
|
---|
| 211 | }
|
---|