Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ReciprocalTransformation.cs @ 17097

Last change on this file since 17097 was 17097, checked in by mkommend, 5 years ago

#2520: Merged 16565 - 16579 into stable.

File size: 1.5 KB
Line 
1
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using HeuristicLab.Common;
6using HeuristicLab.Core;
7using HEAL.Attic;
8namespace HeuristicLab.Problems.DataAnalysis {
9  [StorableType("8D242A5A-5EBB-4618-958E-A7EF34151508")]
10  [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")]
11  public class ReciprocalTransformation : Transformation<double> {
12
13    #region properties
14    public override string ShortName {
15      get { return "Inv"; }
16    }
17    #endregion
18
19    [StorableConstructor]
20    protected ReciprocalTransformation(StorableConstructorFlag _) : base(_) { }
21    protected ReciprocalTransformation(ReciprocalTransformation original, Cloner cloner)
22      : base(original, cloner) {
23    }
24    public ReciprocalTransformation(IEnumerable<string> allowedColumns)
25      : base(allowedColumns) {
26    }
27
28    public override IDeepCloneable Clone(Cloner cloner) {
29      return new ReciprocalTransformation(this, cloner);
30    }
31
32    public override IEnumerable<double> Apply(IEnumerable<double> data) {
33      return data.Select(d => d > 0 ? 1.0 / d : d);
34    }
35
36    public override bool Check(IEnumerable<double> data, out string errorMsg) {
37      errorMsg = null;
38      int errorCounter = data.Count(i => i <= 0.0);
39      if (errorCounter > 0) {
40        errorMsg = String.Format("{0} values are zero or below zero. 1/x can not be applied onto these values", errorCounter);
41        return false;
42      }
43      return true;
44    }
45  }
46}
Note: See TracBrowser for help on using the repository browser.