Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/11 18:32:08 (13 years ago)
Author:
gkronber
Message:

#1081 added configuration of default grammar for time-series prognosis and improved multiple update of variable impacts result

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisVariableFrequencyAnalyzer.cs

    r6728 r6811  
    8080      ItemArray<ISymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue;
    8181      ResultCollection results = ResultCollection;
    82       DoubleMatrix impacts;
    8382      DataTable datatable;
    8483      if (VariableFrequenciesParameter.ActualValue == null) {
     
    8685        datatable.VisualProperties.XAxisTitle = "Generation";
    8786        datatable.VisualProperties.YAxisTitle = "Relative Variable Frequency";
    88         impacts = new DoubleMatrix();
    8987        VariableFrequenciesParameter.ActualValue = datatable;
    90         VariableImpactsParameter.ActualValue = impacts;
    9188        results.Add(new Result("Variable frequencies", "Relative frequency of variable references aggregated over the whole population.", datatable));
    92         results.Add(new Result("Variable impacts", "The relative variable relevance calculated as the average relative variable frequency over the whole run.", impacts));
    93       }
    94 
    95       impacts = VariableImpactsParameter.ActualValue;
     89        results.Add(new Result("Variable impacts", "The relative variable relevance calculated as the average relative variable frequency over the whole run.", new DoubleMatrix()));
     90      }
     91
    9692      datatable = VariableFrequenciesParameter.ActualValue;
    9793      // all rows must have the same number of values so we can just take the first
     
    117113                           .OrderByDescending(p => p.Impact)
    118114                           .ToList();
    119       var matrix = (IStringConvertibleMatrix)impacts;
     115      var impacts = new DoubleMatrix();
     116      var matrix = impacts as IStringConvertibleMatrix;
    120117      matrix.Rows = orderedImpacts.Count;
    121118      matrix.RowNames = orderedImpacts.Select(x => x.Name);
     
    127124      }
    128125
     126      VariableImpactsParameter.ActualValue = impacts;
     127      results["Variable impacts"].Value = impacts;
    129128      return base.Apply();
    130129    }
Note: See TracChangeset for help on using the changeset viewer.