Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/24/12 18:48:16 (12 years ago)
Author:
sforsten
Message:

#1292:

  • NaN values are used, if the calculation is invalid (e.g. missing values, infinity etc.)
  • Variables can now be filtered. Initially allowed input variables and target variable are shown, but with a right click a dialog can be opened to select variables, which shall be shown
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/ProblemDataView.cs

    r8593 r8689  
    4545
    4646    protected void FeatureCorrelationButton_Click(object sender, System.EventArgs e) {
    47       ViewHost viewHost = new ViewHost();
    48       viewHost.Content = (DataAnalysisProblemData)this.Content.Clone();
    49       viewHost.ViewType = typeof(FeatureCorrelationView);
    50       viewHost.Show();
     47      Type viewType = MainFormManager.GetViewTypes(this.Content.GetType(), true).FirstOrDefault(t => typeof(AbstractFeatureCorrelationView).IsAssignableFrom(t));
     48      MainFormManager.MainForm.ShowContent(Content, viewType);
    5149    }
    5250
Note: See TracChangeset for help on using the changeset viewer.