Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/13 10:56:12 (11 years ago)
Author:
ascheibe
Message:

#2031 improved chart analysis view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.cs

    r9904 r9908  
    3434
    3535namespace HeuristicLab.Analysis.Statistics {
    36   [View("RunCollection Chart Analysis")]
     36  [View("Chart Analysis")]
    3737  [Content(typeof(RunCollection), false)]
    3838  public sealed partial class ChartAnalysisView : ItemView {
     
    245245      LinearLeastSquaresFitting llsFitting = new LinearLeastSquaresFitting();
    246246      LogFitting logFitting = new LogFitting();
    247       string[] columnNames = new string[] { "Count", "Minimum", "Maximum", "Average", "Median", "Standard Deviation", "Variance", "25th Percentile", "75th Percentile", "Avg. of Upper 25 %", " Avg. of Lower 25 %", "Avg. of First 25 %", "Avg. of Last 25 %", "Gradient", "Relative Error", "a", "b" };
     247      string[] columnNames = new string[] { "Count", "Minimum", "Maximum", "Average", "Median", "Standard Deviation", "Variance", "25th Percentile", "75th Percentile",
     248        "Avg. of Upper 25 %", " Avg. of Lower 25 %", "Avg. of First 25 %", "Avg. of Last 25 %", "Linear Gradient", "Relative Error", "a (log fitted)", "b (log fitted)" };
    248249
    249250      runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible).ToList();
Note: See TracChangeset for help on using the changeset viewer.