1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using HeuristicLab.Common;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 | using HeuristicLab.Data;
|
---|
7 | using HeuristicLab.Parameters;
|
---|
8 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
11 | [StorableClass]
|
---|
12 | [Item("Exponential Transformation", "f(x) = b ^ x | Represents a exponential transformation.")]
|
---|
13 | public class ExponentialTransformation : Transformation<double> {
|
---|
14 | protected const string BaseParameterName = "Base";
|
---|
15 |
|
---|
16 | #region Parameters
|
---|
17 | public IValueParameter<DoubleValue> BaseParameter {
|
---|
18 | get { return (IValueParameter<DoubleValue>)Parameters[BaseParameterName]; }
|
---|
19 | }
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | #region properties
|
---|
23 | public override string ShortName {
|
---|
24 | get { return "Exp"; }
|
---|
25 | }
|
---|
26 | public double Base {
|
---|
27 | get { return BaseParameter.Value.Value; }
|
---|
28 | }
|
---|
29 | #endregion
|
---|
30 |
|
---|
31 | [StorableConstructor]
|
---|
32 | protected ExponentialTransformation(bool deserializing) : base(deserializing) { }
|
---|
33 |
|
---|
34 | protected ExponentialTransformation(ExponentialTransformation original, Cloner cloner)
|
---|
35 | : base(original, cloner) {
|
---|
36 | }
|
---|
37 |
|
---|
38 | public ExponentialTransformation(IEnumerable<string> allowedColumns)
|
---|
39 | : base(allowedColumns) {
|
---|
40 | Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "b | Base of exp-function", new DoubleValue(Math.E)));
|
---|
41 | }
|
---|
42 |
|
---|
43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
44 | return new ExponentialTransformation(this, cloner);
|
---|
45 | }
|
---|
46 |
|
---|
47 | public override IEnumerable<double> Apply(IEnumerable<double> data) {
|
---|
48 | return data.Select(d => Math.Pow(Base, d));
|
---|
49 | }
|
---|
50 |
|
---|
51 | public override bool Check(IEnumerable<double> data, out string errorMsg) {
|
---|
52 | errorMsg = "";
|
---|
53 | return true;
|
---|
54 | }
|
---|
55 | }
|
---|
56 | }
|
---|