Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3774


Ignore:
Timestamp:
05/11/10 17:49:13 (14 years ago)
Author:
gkronber
Message:

Renamed Variable Frequencies result. #893

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Analyzers/SymbolicRegressionVariableFrequencyAnalyzer.cs

    r3681 r3774  
    8181
    8282      if (VariableImpacts == null) {
    83         VariableImpacts = new DataTable("Variable Frequencies", "Relative frequency of variable references aggregated over the whole population.");
     83        VariableImpacts = new DataTable("Variable frequencies", "Relative frequency of variable references aggregated over the whole population.");
    8484        // add a data row for each input variable
    8585        foreach (var inputVariable in inputVariables)
    8686          VariableImpacts.Rows.Add(new DataRow(inputVariable));
    87         results.Add(new Result("Variable Frequencies", VariableImpacts));
     87        results.Add(new Result("Variable frequencies", VariableImpacts));
    8888      }
    8989      foreach (var pair in VariableFrequencyAnalyser.CalculateVariableFrequencies(expressions, inputVariables)) {
    9090        VariableImpacts.Rows[pair.Key].Values.Add(pair.Value);
    91         results["Variable Frequencies"].Value = VariableImpacts;
     91        results["Variable frequencies"].Value = VariableImpacts;
    9292      }
    9393
Note: See TracChangeset for help on using the changeset viewer.