Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2906_Transformations/HeuristicLab.DataPreprocessing/3.4/Data/IPreprocessingData.cs @ 15846

Last change on this file since 15846 was 15846, checked in by pfleck, 6 years ago

#2906 First concept of simple transformation (single target transformation)

File size: 4.5 KB
RevLine 
[10157]1#region License Information
2/* HeuristicLab
[15583]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]22using System;
[10157]23using System.Collections.Generic;
24using HeuristicLab.Core;
[10220]25using HeuristicLab.Data;
[10163]26using HeuristicLab.Problems.DataAnalysis;
[10157]27
[10182]28namespace HeuristicLab.DataPreprocessing {
[10157]29  public interface IPreprocessingData : INamedItem {
[15518]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
[15518]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);
[15518]59    #endregion
[11068]60
[15518]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);
[15518]68    Type GetVariableType(int columnIndex);
[10159]69
[14381]70    IList<string> InputVariables { get; }
71    string TargetVariable { get; } // optional
[15518]72    #endregion
[14381]73
[15518]74    #region Partitions
75    IntRange TrainingPartition { get; }
76    IntRange TestPartition { get; }
77    #endregion
[10163]78
[15518]79    #region Transformations
[15846]80    IList<IDataAnalysisTransformation> Transformations { get; }
[15518]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();
[15518]90    #endregion
[10804]91
[15518]92    #region Selection
[10978]93    IDictionary<int, IList<int>> Selection { get; set; }
[10804]94    void ClearSelection();
95
96    event EventHandler SelectionChanged;
[15518]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}
Note: See TracBrowser for help on using the repository browser.