Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftToRangeTransformation.cs @ 16462

Last change on this file since 16462 was 16462, checked in by jkarder, 5 years ago

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File size: 2.3 KB
Line 
1using System.Collections.Generic;
2using System.Linq;
3using HeuristicLab.Common;
4using HeuristicLab.Core;
5using HeuristicLab.Data;
6using HeuristicLab.Parameters;
7using HEAL.Fossil;
8
9namespace HeuristicLab.Problems.DataAnalysis {
10  [StorableType("4A91E704-927C-4278-AA11-79C16BD8E4F2")]
11  [Item("Shift to Range Transformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
12  public class ShiftToRangeTransformation : LinearTransformation {
13    protected const string RangeParameterName = "Range";
14
15    #region Parameters
16    public IValueParameter<DoubleRange> RangeParameter {
17      get { return (IValueParameter<DoubleRange>)Parameters[RangeParameterName]; }
18    }
19    #endregion
20
21    #region properties
22    public override string ShortName {
23      get { return "Sft"; }
24    }
25    public DoubleRange Range {
26      get { return RangeParameter.Value; }
27    }
28    #endregion
29
30    [StorableConstructor]
31    protected ShiftToRangeTransformation(StorableConstructorFlag _) : base(_) { }
32    protected ShiftToRangeTransformation(ShiftToRangeTransformation original, Cloner cloner)
33      : base(original, cloner) {
34    }
35    public ShiftToRangeTransformation(IEnumerable<string> allowedColumns)
36      : base(allowedColumns) {
37      MultiplierParameter.Hidden = true;
38      AddendParameter.Hidden = true;
39      Parameters.Add(new ValueParameter<DoubleRange>(RangeParameterName, "start, end | Range for the target window of the linear transformation", new DoubleRange(0.0, 1.0)));
40    }
41
42    public override IDeepCloneable Clone(Cloner cloner) {
43      return new ShiftToRangeTransformation(this, cloner);
44    }
45
46    public override bool Check(IEnumerable<double> data, out string errorMsg) {
47      ConfigureParameters(data);
48      return base.Check(data, out errorMsg);
49    }
50
51    public override void ConfigureParameters(IEnumerable<double> data) {
52      double originalRangeStart = data.Min();
53      double originalRangeEnd = data.Max();
54
55      double originalRangeWidth = originalRangeEnd - originalRangeStart;
56      double targetRangeWidth = Range.End - Range.Start;
57
58      Multiplier = targetRangeWidth / originalRangeWidth;
59      Addend = Range.Start - originalRangeStart * Multiplier;
60    }
61  }
62}
Note: See TracBrowser for help on using the repository browser.