Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/19/14 14:42:04 (9 years ago)
Author:
ascheibe
Message:

#2031

  • moved statistics views to a new plugin (HL.Analysis.Statistics.Views) in trunk
  • fixed namespaces of unit tests
Location:
trunk/sources/HeuristicLab.Analysis.Statistics.Views
Files:
2 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs

    r11697 r11705  
    3333using HeuristicLab.Optimization.Views;
    3434
    35 namespace HeuristicLab.Analysis.Statistics {
    36   [View("Statistical Tests", "HeuristicLab.Analysis.Statistics.InfoResources.StatisticalTestsInfo.rtf")]
     35namespace HeuristicLab.Analysis.Statistics.Views {
     36  [View("Statistical Tests", "HeuristicLab.Analysis.Statistics.Views.InfoResources.StatisticalTestsInfo.rtf")]
    3737  [Content(typeof(RunCollection), false)]
    3838  public sealed partial class StatisticalTestsView : ItemView, IConfigureableView {
     
    327327      if (pval < significanceLevel) {
    328328        this.Invoke(new Action(() => {
    329           groupCompLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default;
     329          groupCompLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Default;
    330330          groupComTextLabel.Text = "There are groups with different distributions";
    331331        }));
     
    359359      } else {
    360360        this.Invoke(new Action(() => {
    361           normalityLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default;
     361          normalityLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Default;
    362362          normalityTextLabel.Text = "All sample data is normally distributed";
    363363        }));
     
    376376      if (nrOfEqualDistributions == 0) {
    377377        this.Invoke(new Action(() => {
    378           pairwiseLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default;
     378          pairwiseLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Default;
    379379          pairwiseTextLabel.Text = "All groups have different distributions";
    380380        }));
Note: See TracChangeset for help on using the changeset viewer.