Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10909


Ignore:
Timestamp:
05/28/14 15:14:16 (10 years ago)
Author:
tsteinre
Message:
  • modified Transformations Names / Parameter Names
Location:
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ExponentialTransformation.cs

    r10808 r10909  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ExponentialTransformation", "f(x) = b ^ x | Represents a exponential transformation.")]
     10  [Item("Exponential Transformation", "f(x) = b ^ x | Represents a exponential transformation.")]
    1111  public class ExponentialTransformation : Transformation<double> {
    1212    protected const string BaseParameterName = "Base";
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LinearTransformation.cs

    r10821 r10909  
    2424using System.Collections.Generic;
    2525using System.Linq;
    26 using System.Text;
    2726using HeuristicLab.Common;
    2827using HeuristicLab.Core;
     
    3231
    3332namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    34   [Item("LinearTransformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")]
     33  [Item("Linear Transformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")]
    3534  public class LinearTransformation : Transformation<double> {
    3635    protected const string MultiplierParameterName = "Multiplier";
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LogarithmicTransformation.cs

    r10821 r10909  
    22using System.Collections.Generic;
    33using System.Linq;
    4 using System.Text;
    54using HeuristicLab.Common;
    65using HeuristicLab.Core;
     
    109
    1110namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    12   [Item("LogarithmicTransformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")]
     11  [Item("Logarithmic Transformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")]
    1312  public class LogarithmicTransformation : Transformation<double> {
    1413    protected const string BaseParameterName = "Base";
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/PowerTransformation.cs

    r10808 r10909  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("PowerTransformation", "f(x) = x ^ exp | Represents a power transformation.")]
     10  [Item("Power Transformation", "f(x) = x ^ exp | Represents a power transformation.")]
    1111  public class PowerTransformation : Transformation<double> {
    1212    protected const string ExponentParameterName = "Exponent";
     
    3131    public PowerTransformation(IEnumerable<string> allowedColumns)
    3232      : base(allowedColumns) {
    33       Parameters.Add(new ValueParameter<DoubleValue>(ExponentParameterName, "exp | Exponent for Exponentation", new DoubleValue(Math.E)));
     33      Parameters.Add(new ValueParameter<DoubleValue>(ExponentParameterName, "exp | Exponent for Exponentation", new DoubleValue(2.0)));
    3434    }
    3535
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ReciprocalTransformation.cs

    r10821 r10909  
    33using System.Collections.Generic;
    44using System.Linq;
    5 using System.Text;
    65using HeuristicLab.Common;
    76using HeuristicLab.Core;
    87using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    98namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ReciprocalTransformation", "f(x) = 1 / x | Represents a reciprocal transformation.")]
     9  [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")]
    1110  public class ReciprocalTransformation : Transformation<double> {
    1211
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftStandardDistributionTransformation.cs

    r10841 r10909  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ShiftStandardDistributionTransformation.cs", "f(x) = ((x - m_org) / s_org ) * s_tar + m_tar | Represents Transformation to unit standard deviation and additional linear transformation to a target Mean and Standard deviation")]
     10  [Item("Shift Standard Distribution Transformation", "f(x) = ((x - m_org) / s_org ) * s_tar + m_tar | Represents Transformation to unit standard deviation and additional linear transformation to a target Mean and Standard deviation")]
    1111  public class ShiftStandardDistributionTransformation : Transformation<double> {
    12     protected const string OriginalMeanParameterName = "OriginalMean";
    13     protected const string OriginalStandardDeviationParameterName = "OriginalStandardDeviation";
     12    protected const string OriginalMeanParameterName = "Original Mean";
     13    protected const string OriginalStandardDeviationParameterName = "Original Standard Deviation";
    1414    protected const string MeanParameterName = "Mean";
    15     protected const string StandardDeviationParameterName = "StandardDeviation";
     15    protected const string StandardDeviationParameterName = "Standard Deviation";
    1616
    1717    #region Parameters
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftToRangeTransformation.cs

    r10841 r10909  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ShiftToRangeTransformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
     10  [Item("Shift to Range Transformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
    1111  public class ShiftToRangeTransformation : LinearTransformation {
    1212    protected const string RangeParameterName = "Range";
Note: See TracChangeset for help on using the changeset viewer.