- Timestamp:
- 06/04/14 11:16:23 (10 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/ExponentialTransformation.cs
r10909 r10932 19 19 20 20 #region properties 21 public override string ShortName { 22 get { return "Exp"; } 23 } 21 24 public double Base { 22 25 get { return BaseParameter.Value.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/Interfaces/ITransformation.cs
r10772 r10932 25 25 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 26 26 public interface ITransformation : IParameterizedItem { 27 string ShortName { get; } 27 28 string Column { get; } 28 29 } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/LinearTransformation.cs
r10909 r10932 46 46 47 47 #region properties 48 public override string ShortName { 49 get { return "Lin"; } 50 } 48 51 public double Multiplier { 49 52 get { return MultiplierParameter.Value.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/LogarithmicTransformation.cs
r10909 r10932 20 20 21 21 #region properties 22 public override string ShortName { 23 get { return "Log"; } 24 } 22 25 public double Base { 23 26 get { return BaseParameter.Value.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/PowerTransformation.cs
r10909 r10932 19 19 20 20 #region properties 21 public override string ShortName { 22 get { return "Pow"; } 23 } 21 24 public double Exponent { 22 25 get { return ExponentParameter.Value.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/ReciprocalTransformation.cs
r10909 r10932 9 9 [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")] 10 10 public class ReciprocalTransformation : Transformation<double> { 11 12 #region properties 13 public override string ShortName { 14 get { return "Inv"; } 15 } 16 #endregion 11 17 12 18 //TODO: is a special case of Linear -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/ShiftStandardDistributionTransformation.cs
r10909 r10932 31 31 32 32 #region properties 33 public override string ShortName { 34 get { return "Std"; } 35 } 33 36 public double OriginalMean { 34 37 get { return OriginalMeanParameter.Value.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/ShiftToRangeTransformation.cs
r10909 r10932 19 19 20 20 #region properties 21 public override string ShortName { 22 get { return "Sft"; } 23 } 21 24 public DoubleRange Range { 22 25 get { return RangeParameter.Value; } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.4/Transformation.cs
r10778 r10932 40 40 41 41 #region properties 42 public abstract string ShortName { get; } 43 42 44 public string Column { 43 45 get { return ColumnParameter.Value.Value; } … … 56 58 57 59 public abstract bool Check(IEnumerable<T> data, out string errorMsg); 60 61 #region IParameterizedItem Members 62 63 public new IKeyedItemCollection<string, IParameter> Parameters { 64 get { throw new System.NotImplementedException(); } 65 } 66 67 #endregion 58 68 } 59 69 }
Note: See TracChangeset
for help on using the changeset viewer.