Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.DataPreprocessing/3.4/Content/PreprocessingChartContent.cs @ 17418

Last change on this file since 17418 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 4.8 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10539]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[10992]22using System;
23using System.Collections.Generic;
[10539]24using System.Drawing;
[15110]25using System.Linq;
[10992]26using HeuristicLab.Analysis;
[10539]27using HeuristicLab.Common;
[15110]28using HeuristicLab.Common.Resources;
[10245]29using HeuristicLab.Core;
[10818]30using HeuristicLab.Data;
[16565]31using HEAL.Attic;
[10242]32
[10539]33namespace HeuristicLab.DataPreprocessing {
[10658]34  [Item("PreprocessingChart", "Represents a preprocessing chart.")]
[16565]35  [StorableType("7EDAFA6E-E4B1-4150-BB57-280A9F9E61D8")]
[15518]36  public class PreprocessingChartContent : PreprocessingContent, IViewShortcut {
[16565]37    [StorableType("d4c1c81a-f0c5-496f-8264-76b75572c0fc")]
[15110]38    public enum LegendOrder {
[15210]39      Alphabetically,
40      Appearance
[10992]41    }
[10252]42
[15110]43    public static new Image StaticItemImage {
44      get { return VSImageLibrary.PieChart; }
[10992]45    }
[10818]46
[15518]47    [Storable]
48    private ICheckedItemList<StringValue> variableItemList;
[10992]49    public ICheckedItemList<StringValue> VariableItemList {
[15110]50      get {
51        if (variableItemList == null)
52          variableItemList = CreateVariableItemList(PreprocessingData);
[15518]53        return variableItemList;
[15110]54      }
[10992]55    }
[10818]56
[15110]57    public event DataPreprocessingChangedEventHandler Changed {
58      add { PreprocessingData.Changed += value; }
59      remove { PreprocessingData.Changed -= value; }
60    }
[10818]61
[15518]62    #region Constructor, Cloning & Persistence
63    public PreprocessingChartContent(IFilteredPreprocessingData preprocessingData)
64       : base(preprocessingData) {
[10252]65    }
66
[15518]67    public PreprocessingChartContent(PreprocessingChartContent original, Cloner cloner)
68      : base(original, cloner) {
69      variableItemList = cloner.Clone(original.variableItemList);
[10245]70    }
[10992]71    public override IDeepCloneable Clone(Cloner cloner) {
72      return new PreprocessingChartContent(this, cloner);
73    }
[10245]74
[15518]75    [StorableConstructor]
[16565]76    protected PreprocessingChartContent(StorableConstructorFlag _) : base(_) { }
[15518]77    #endregion
78
[10992]79    public DataRow CreateDataRow(string variableName, DataRowVisualProperties.DataRowChartType chartType) {
[15110]80      return CreateDataRow(PreprocessingData, variableName, chartType);
[10252]81    }
82
[15110]83    public static DataRow CreateDataRow(IFilteredPreprocessingData preprocessingData, string variableName, DataRowVisualProperties.DataRowChartType chartType) {
[15518]84      var values = preprocessingData.GetValues<double>(preprocessingData.GetColumnIndex(variableName));
85      var row = new DataRow(variableName, "", values) {
86        VisualProperties = {
87          ChartType = chartType,
88          StartIndexZero = true
89        }
90      };
[10992]91      return row;
[10573]92    }
[10818]93
[15110]94    private static ICheckedItemList<StringValue> CreateVariableItemList(IPreprocessingData preprocessingData) {
[10992]95      ICheckedItemList<StringValue> itemList = new CheckedItemList<StringValue>();
[15110]96      foreach (string name in preprocessingData.GetDoubleVariableNames()) {
[12676]97        var n = new StringValue(name);
[15110]98        bool isInputTarget = preprocessingData.InputVariables.Contains(name) || preprocessingData.TargetVariable == name;
99        itemList.Add(n, isInputTarget);
[10992]100      }
101      return new ReadOnlyCheckedItemList<StringValue>(itemList);
[10818]102    }
[10992]103
[15210]104    public static IEnumerable<string> GetVariableNamesForGrouping(IPreprocessingData preprocessingData, int maxDistinctValues = 20) {
[15110]105      var variableNames = new List<string>();
106
107      for (int i = 0; i < preprocessingData.Columns; ++i) {
108        int distinctValues = Int32.MaxValue;
109        if (preprocessingData.VariableHasType<double>(i))
110          distinctValues = preprocessingData.GetValues<double>(i).GroupBy(x => x).Count();
111        else if (preprocessingData.VariableHasType<string>(i))
112          distinctValues = preprocessingData.GetValues<string>(i).GroupBy(x => x).Count();
113        else if (preprocessingData.VariableHasType<DateTime>(i))
114          distinctValues = preprocessingData.GetValues<DateTime>(i).GroupBy(x => x).Count();
115
[15210]116        if (distinctValues <= maxDistinctValues)
[15110]117          variableNames.Add(preprocessingData.GetVariableName(i));
118      }
119      return variableNames;
[10992]120    }
[10242]121  }
122}
Note: See TracBrowser for help on using the repository browser.