Changeset 13656 for branches/WebJobManager/HeuristicLab.DataPreprocessing/3.4/Content/CorrelationMatrixContent.cs
- Timestamp:
- 03/07/16 10:18:05 (9 years ago)
- Location:
- branches/WebJobManager
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.DataPreprocessing/3.4/Content/CorrelationMatrixContent.cs
r13517 r13656 20 20 #endregion 21 21 22 using System.Drawing;23 22 using HeuristicLab.Common; 24 23 using HeuristicLab.Core; … … 28 27 [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")] 29 28 public class CorrelationMatrixContent : Item, IViewChartShortcut { 30 public static new Image StaticItemImage { 31 get { return HeuristicLab.Common.Resources.VSImageLibrary.Gradient; } 32 } 29 33 30 34 31 private PreprocessingContext Context { get; set; } 35 private ITransactionalPreprocessingData PreprocessingData { 32 private ITransactionalPreprocessingData PreprocessingData 33 { 36 34 get { return Context.Data; } 37 35 } 38 36 39 public DataAnalysisProblemData ProblemData { 40 get { 37 public DataAnalysisProblemData ProblemData 38 { 39 get 40 { 41 41 var problemData = (DataAnalysisProblemData)Context.CreateNewProblemData(); 42 42 foreach (var input in problemData.InputVariables) … … 60 60 } 61 61 62 public event DataPreprocessingChangedEventHandler Changed { 62 public event DataPreprocessingChangedEventHandler Changed 63 { 63 64 add { PreprocessingData.Changed += value; } 64 65 remove { PreprocessingData.Changed -= value; }
Note: See TracChangeset
for help on using the changeset viewer.