Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/13 16:28:05 (11 years ago)
Author:
tsteinre
Message:
  • implemented ExportToDataset for IPreprocessingData
File:
1 edited

Legend:

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

    r10218 r10220  
    2222using System.Collections.Generic;
    2323using HeuristicLab.Core;
     24using HeuristicLab.Data;
    2425using HeuristicLab.Problems.DataAnalysis;
    25 using HeuristicLab.Data;
    2626
    2727namespace HeuristicLab.DataPreprocessing {
     
    3636    void InsertRow(int rowIndex);
    3737    void DeleteRow(int rowIndex);
    38 
    39     IntRange TrainingPartition { get; }
    40     IntRange TestPartition { get; }
    4138
    4239    void InsertColumn<T>(string variableName, int columnIndex);
     
    6360
    6461    bool IsMissingValue(string variableName, int rowIndex);
     62
     63    Dataset ExportToDataset();
    6564  }
    6665}
Note: See TracChangeset for help on using the changeset viewer.