- Timestamp:
- 04/06/18 11:35:10 (7 years ago)
- Location:
- branches/2906_Transformations/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2906_Transformations/HeuristicLab.DataPreprocessing/3.4/Data/PreprocessingData.cs
r15865 r15885 414 414 } 415 415 416 // TODO: set fixed constrained (allowed) values417 416 foreach (var trans in problemData.Transformations) { 418 417 var newTrans = new PreprocessingTransformation(variableNames.Select(x => new StringValue(x))) { -
branches/2906_Transformations/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj
r15865 r15885 110 110 <SpecificVersion>False</SpecificVersion> 111 111 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Parameters-3.3.dll</HintPath> 112 <Private>False</Private> 112 113 </Reference> 113 114 <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> -
branches/2906_Transformations/HeuristicLab.DataPreprocessing/3.4/ProblemDataCreator.cs
r15884 r15885 75 75 76 76 private IDataAnalysisProblemData CreateRegressionData(RegressionProblemData oldProblemData) { 77 var targetVariable = DataAnalysisTransformation.Get LastTransitiveVariable(oldProblemData.TargetVariable, CreateDataAnalysisTransformation());77 var targetVariable = DataAnalysisTransformation.GetStrictTransitiveVariables(oldProblemData.TargetVariable, CreateDataAnalysisTransformation(), false).Last(); 78 78 if (!context.Data.VariableNames.Contains(targetVariable)) 79 79 targetVariable = context.Data.VariableNames.First();
Note: See TracChangeset
for help on using the changeset viewer.