[9353] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11375] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[9353] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
[9713] | 25 | using System.Threading.Tasks;
|
---|
[9353] | 26 | using System.Windows.Forms;
|
---|
[11376] | 27 | using HeuristicLab.Collections;
|
---|
[9353] | 28 | using HeuristicLab.Common;
|
---|
[11376] | 29 | using HeuristicLab.Core;
|
---|
[9353] | 30 | using HeuristicLab.Core.Views;
|
---|
| 31 | using HeuristicLab.Data;
|
---|
| 32 | using HeuristicLab.MainForm;
|
---|
| 33 | using HeuristicLab.Optimization;
|
---|
[9706] | 34 | using HeuristicLab.PluginInfrastructure;
|
---|
[9353] | 35 |
|
---|
[11705] | 36 | namespace HeuristicLab.Analysis.Statistics.Views {
|
---|
| 37 | [View("Chart Analysis", "HeuristicLab.Analysis.Statistics.Views.InfoResources.ChartAnalysisInfo.rtf")]
|
---|
[9353] | 38 | [Content(typeof(RunCollection), false)]
|
---|
[9377] | 39 | public sealed partial class ChartAnalysisView : ItemView {
|
---|
| 40 | public new RunCollection Content {
|
---|
| 41 | get { return (RunCollection)base.Content; }
|
---|
| 42 | set { base.Content = value; }
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | public override bool ReadOnly {
|
---|
| 46 | get { return true; }
|
---|
| 47 | set { /*not needed because results are always readonly */}
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[9378] | 50 | private List<IRun> runs;
|
---|
[9904] | 51 | private IProgress progress;
|
---|
[9713] | 52 | private bool valuesAdded = false;
|
---|
[11376] | 53 | private bool suppressUpdates = false;
|
---|
[9378] | 54 |
|
---|
[9377] | 55 | public ChartAnalysisView() {
|
---|
[9353] | 56 | InitializeComponent();
|
---|
[9713] | 57 |
|
---|
[11697] | 58 | stringConvertibleMatrixView.DataGridView.RowHeaderMouseDoubleClick += DataGridView_RowHeaderMouseDoubleClick;
|
---|
[9706] | 59 |
|
---|
| 60 | var fittingAlgs = ApplicationManager.Manager.GetInstances<IFitting>();
|
---|
| 61 | foreach (var fit in fittingAlgs) {
|
---|
| 62 | fittingComboBox.Items.Add(fit);
|
---|
| 63 | }
|
---|
| 64 | fittingComboBox.SelectedIndex = 0;
|
---|
[9353] | 65 | }
|
---|
| 66 |
|
---|
| 67 | protected override void Dispose(bool disposing) {
|
---|
| 68 | if (disposing && (components != null)) {
|
---|
[11697] | 69 | stringConvertibleMatrixView.DataGridView.RowHeaderMouseDoubleClick -= DataGridView_RowHeaderMouseDoubleClick;
|
---|
[9353] | 70 | components.Dispose();
|
---|
| 71 | }
|
---|
[9904] | 72 |
|
---|
[9353] | 73 | base.Dispose(disposing);
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[9377] | 76 | #region Content Events
|
---|
[9353] | 77 | protected override void OnContentChanged() {
|
---|
| 78 | base.OnContentChanged();
|
---|
[11376] | 79 | UpdateComboboxes();
|
---|
| 80 | UpdateCaption();
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | private void UpdateCaption() {
|
---|
| 84 | Caption = Content != null ? Content.OptimizerName + " Chart Analysis" : ViewAttribute.GetViewName(GetType());
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | private void UpdateComboboxes() {
|
---|
[9353] | 88 | if (Content != null) {
|
---|
| 89 | UpdateDataTableComboBox();
|
---|
| 90 | }
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | protected override void RegisterContentEvents() {
|
---|
| 94 | base.RegisterContentEvents();
|
---|
[11697] | 95 | Content.ColumnsChanged += Content_ColumnsChanged;
|
---|
| 96 | Content.RowsChanged += Content_RowsChanged;
|
---|
[11376] | 97 | Content.CollectionReset += Content_CollectionReset;
|
---|
[9378] | 98 | Content.UpdateOfRunsInProgressChanged += Content_UpdateOfRunsInProgressChanged;
|
---|
[9353] | 99 | }
|
---|
| 100 |
|
---|
| 101 | protected override void DeregisterContentEvents() {
|
---|
| 102 | base.DeregisterContentEvents();
|
---|
[11697] | 103 | Content.ColumnsChanged -= Content_ColumnsChanged;
|
---|
| 104 | Content.RowsChanged -= Content_RowsChanged;
|
---|
[11376] | 105 | Content.CollectionReset -= Content_CollectionReset;
|
---|
[9378] | 106 | Content.UpdateOfRunsInProgressChanged -= Content_UpdateOfRunsInProgressChanged;
|
---|
[9353] | 107 | }
|
---|
| 108 |
|
---|
[11697] | 109 | void Content_RowsChanged(object sender, EventArgs e) {
|
---|
| 110 | RebuildDataTableAsync();
|
---|
[11376] | 111 | }
|
---|
| 112 |
|
---|
[11697] | 113 | void Content_ColumnsChanged(object sender, EventArgs e) {
|
---|
| 114 | RebuildDataTableAsync();
|
---|
[11376] | 115 | }
|
---|
| 116 |
|
---|
| 117 | private void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
| 118 | UpdateComboboxes();
|
---|
[9713] | 119 | RebuildDataTableAsync();
|
---|
[9353] | 120 | }
|
---|
| 121 |
|
---|
[11378] | 122 | private void Content_UpdateOfRunsInProgressChanged(object sender, EventArgs e) {
|
---|
[11376] | 123 | suppressUpdates = Content.UpdateOfRunsInProgress;
|
---|
| 124 |
|
---|
| 125 | if (!suppressUpdates && !valuesAdded) {
|
---|
[9713] | 126 | RebuildDataTableAsync();
|
---|
[9353] | 127 | }
|
---|
[9713] | 128 | if (valuesAdded) {
|
---|
| 129 | valuesAdded = false;
|
---|
| 130 | }
|
---|
[9353] | 131 | }
|
---|
| 132 | #endregion
|
---|
| 133 |
|
---|
[11697] | 134 | #region events
|
---|
[11378] | 135 | private void DataGridView_RowHeaderMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) {
|
---|
[9377] | 136 | if (e.RowIndex >= 0) {
|
---|
[9378] | 137 | IRun run = runs[stringConvertibleMatrixView.GetRowIndex(e.RowIndex)];
|
---|
[9377] | 138 | IContentView view = MainFormManager.MainForm.ShowContent(run);
|
---|
| 139 | if (view != null) {
|
---|
| 140 | view.ReadOnly = this.ReadOnly;
|
---|
| 141 | view.Locked = this.Locked;
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
[9353] | 144 | }
|
---|
| 145 |
|
---|
| 146 | private void dataTableComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 147 | UpdateDataRowComboBox();
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 | private void dataRowComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[9713] | 151 | RebuildDataTableAsync();
|
---|
[9353] | 152 | }
|
---|
| 153 |
|
---|
[9377] | 154 | private void addLineToChart_Click(object sender, EventArgs e) {
|
---|
[11376] | 155 | MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToView(this, "Adding fitted lines to charts...");
|
---|
[9713] | 156 |
|
---|
[11379] | 157 | string resultName = (string)dataTableComboBox.SelectedItem;
|
---|
| 158 | string rowName = (string)dataRowComboBox.SelectedItem;
|
---|
[9713] | 159 |
|
---|
[11379] | 160 | var task = Task.Factory.StartNew(() => AddLineToChart(resultName, rowName));
|
---|
| 161 |
|
---|
[9713] | 162 | task.ContinueWith((t) => {
|
---|
[11376] | 163 | MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
[9713] | 164 | ErrorHandling.ShowErrorDialog("An error occured while adding lines to charts. ", t.Exception);
|
---|
| 165 | }, TaskContinuationOptions.OnlyOnFaulted);
|
---|
| 166 |
|
---|
| 167 | task.ContinueWith((t) => {
|
---|
[11376] | 168 | MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
[9713] | 169 | }, TaskContinuationOptions.OnlyOnRanToCompletion);
|
---|
| 170 | }
|
---|
| 171 |
|
---|
[11379] | 172 | private void AddLineToChart(string resultName, string rowName) {
|
---|
[9378] | 173 | foreach (IRun run in runs) {
|
---|
[9377] | 174 | DataTable resTable = (DataTable)run.Results[resultName];
|
---|
| 175 | DataRow row = resTable.Rows[rowName];
|
---|
| 176 | var values = row.Values.ToArray();
|
---|
| 177 |
|
---|
[9706] | 178 | var fittingAlg = fittingComboBox.SelectedItem as IFitting;
|
---|
[11697] | 179 | DataRow newRow = fittingAlg.CalculateFittedLine(values, row.Name + " (" + fittingAlg + ")");
|
---|
[9377] | 180 |
|
---|
| 181 | if (!resTable.Rows.ContainsKey(newRow.Name))
|
---|
| 182 | resTable.Rows.Add(newRow);
|
---|
| 183 | }
|
---|
| 184 | }
|
---|
| 185 |
|
---|
| 186 | private void addValuesButton_Click(object sender, EventArgs e) {
|
---|
| 187 | string resultName = (string)dataTableComboBox.SelectedItem;
|
---|
| 188 | string rowName = (string)dataRowComboBox.SelectedItem;
|
---|
[9378] | 189 | DoubleMatrix sm = (DoubleMatrix)stringConvertibleMatrixView.Content;
|
---|
[9377] | 190 |
|
---|
| 191 | Content.UpdateOfRunsInProgress = true;
|
---|
| 192 | for (int i = 0; i < runs.Count(); i++) {
|
---|
[9378] | 193 | IRun run = runs[i];
|
---|
[9377] | 194 |
|
---|
| 195 | for (int j = 0; j < sm.ColumnNames.Count(); j++) {
|
---|
[9378] | 196 | if (stringConvertibleMatrixView.DataGridView.Columns[j].Visible) {
|
---|
| 197 | string newResultName = resultName + " " + rowName + " " + sm.ColumnNames.ElementAt(j);
|
---|
| 198 | if (!run.Results.ContainsKey(newResultName)) {
|
---|
[11697] | 199 | run.Results.Add(new KeyValuePair<string, IItem>(newResultName, new DoubleValue(sm[i, j])));
|
---|
[9378] | 200 | }
|
---|
| 201 | }
|
---|
[9377] | 202 | }
|
---|
| 203 | }
|
---|
[9713] | 204 | valuesAdded = true;
|
---|
[9377] | 205 | Content.UpdateOfRunsInProgress = false;
|
---|
| 206 | }
|
---|
| 207 | #endregion
|
---|
| 208 |
|
---|
[9353] | 209 | private void UpdateDataRowComboBox() {
|
---|
[11379] | 210 | string selectedItem = (string)this.dataRowComboBox.SelectedItem;
|
---|
| 211 |
|
---|
[9353] | 212 | dataRowComboBox.Items.Clear();
|
---|
| 213 | var resultName = (string)dataTableComboBox.SelectedItem;
|
---|
| 214 | var dataTables = from run in Content
|
---|
| 215 | where run.Results.ContainsKey(resultName)
|
---|
| 216 | select run.Results[resultName] as DataTable;
|
---|
| 217 | var rowNames = (from dataTable in dataTables
|
---|
| 218 | from row in dataTable.Rows
|
---|
| 219 | select row.Name).Distinct().ToArray();
|
---|
| 220 |
|
---|
| 221 | dataRowComboBox.Items.AddRange(rowNames);
|
---|
[11379] | 222 | if (selectedItem != null && dataRowComboBox.Items.Contains(selectedItem)) {
|
---|
| 223 | dataRowComboBox.SelectedItem = selectedItem;
|
---|
| 224 | } else if (dataRowComboBox.Items.Count > 0) {
|
---|
| 225 | dataRowComboBox.SelectedItem = dataRowComboBox.Items[0];
|
---|
| 226 | }
|
---|
[9353] | 227 | }
|
---|
| 228 |
|
---|
| 229 | private void UpdateDataTableComboBox() {
|
---|
[11379] | 230 | string selectedItem = (string)this.dataTableComboBox.SelectedItem;
|
---|
| 231 |
|
---|
[9353] | 232 | dataTableComboBox.Items.Clear();
|
---|
| 233 | var dataTables = (from run in Content
|
---|
| 234 | from result in run.Results
|
---|
| 235 | where result.Value is DataTable
|
---|
| 236 | select result.Key).Distinct().ToArray();
|
---|
| 237 |
|
---|
| 238 | dataTableComboBox.Items.AddRange(dataTables);
|
---|
[11379] | 239 | if (selectedItem != null && dataTableComboBox.Items.Contains(selectedItem)) {
|
---|
| 240 | dataTableComboBox.SelectedItem = selectedItem;
|
---|
| 241 | } else if (dataTableComboBox.Items.Count > 0) {
|
---|
| 242 | dataTableComboBox.SelectedItem = dataTableComboBox.Items[0];
|
---|
| 243 | }
|
---|
[9353] | 244 | }
|
---|
| 245 |
|
---|
[9713] | 246 | private void RebuildDataTableAsync() {
|
---|
[11376] | 247 | progress = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToView(this, "Calculating values...");
|
---|
[9713] | 248 |
|
---|
[11379] | 249 | string resultName = (string)dataTableComboBox.SelectedItem;
|
---|
| 250 | string rowName = (string)dataRowComboBox.SelectedItem;
|
---|
[9713] | 251 |
|
---|
[11379] | 252 | var task = Task.Factory.StartNew(() => RebuildDataTable(resultName, rowName));
|
---|
| 253 |
|
---|
[9713] | 254 | task.ContinueWith((t) => {
|
---|
[11376] | 255 | MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
[9713] | 256 | ErrorHandling.ShowErrorDialog("An error occured while calculating values. ", t.Exception);
|
---|
| 257 | }, TaskContinuationOptions.OnlyOnFaulted);
|
---|
| 258 |
|
---|
| 259 | task.ContinueWith((t) => {
|
---|
[11376] | 260 | MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
[9713] | 261 | }, TaskContinuationOptions.OnlyOnRanToCompletion);
|
---|
| 262 | }
|
---|
| 263 |
|
---|
[11379] | 264 | private void RebuildDataTable(string resultName, string rowName) {
|
---|
[9713] | 265 | LinearLeastSquaresFitting llsFitting = new LinearLeastSquaresFitting();
|
---|
[9908] | 266 | string[] columnNames = new string[] { "Count", "Minimum", "Maximum", "Average", "Median", "Standard Deviation", "Variance", "25th Percentile", "75th Percentile",
|
---|
[11665] | 267 | "Avg. of Upper 25 %", " Avg. of Lower 25 %", "Avg. of First 25 %", "Avg. of Last 25 %", "Linear Gradient", "Average Relative Error" };
|
---|
[9353] | 268 |
|
---|
[9378] | 269 | runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible).ToList();
|
---|
| 270 | DoubleMatrix dt = new DoubleMatrix(runs.Count(), columnNames.Count());
|
---|
[9353] | 271 | dt.RowNames = runs.Select(x => x.Name);
|
---|
| 272 | dt.ColumnNames = columnNames;
|
---|
| 273 |
|
---|
| 274 | int i = 0;
|
---|
| 275 | foreach (Run run in runs) {
|
---|
| 276 | DataTable resTable = (DataTable)run.Results[resultName];
|
---|
[9377] | 277 | dt.SortableView = true;
|
---|
[9353] | 278 | DataRow row = resTable.Rows[rowName];
|
---|
| 279 | var values = row.Values.AsEnumerable();
|
---|
| 280 |
|
---|
| 281 | double cnt = values.Count();
|
---|
| 282 | double min = values.Min();
|
---|
| 283 | double max = values.Max();
|
---|
| 284 | double avg = values.Average();
|
---|
| 285 | double median = values.Median();
|
---|
| 286 | double stdDev = values.StandardDeviation();
|
---|
| 287 | double variance = values.Variance();
|
---|
| 288 | double percentile25 = values.Percentile(0.25);
|
---|
| 289 | double percentile75 = values.Percentile(0.75);
|
---|
| 290 | double lowerAvg = values.OrderBy(x => x).Take((int)(values.Count() * 0.25)).Average();
|
---|
| 291 | double upperAvg = values.OrderByDescending(x => x).Take((int)(values.Count() * 0.25)).Average();
|
---|
| 292 | double firstAvg = values.Take((int)(values.Count() * 0.25)).Average();
|
---|
| 293 | double lastAvg = values.Skip((int)(values.Count() * 0.75)).Average();
|
---|
[11665] | 294 | double k, d, r;
|
---|
[9713] | 295 | llsFitting.Calculate(values.ToArray(), out k, out d);
|
---|
| 296 | r = llsFitting.CalculateError(values.ToArray(), k, d);
|
---|
[9353] | 297 |
|
---|
[9378] | 298 | dt[i, 0] = cnt;
|
---|
| 299 | dt[i, 1] = min;
|
---|
| 300 | dt[i, 2] = max;
|
---|
| 301 | dt[i, 3] = avg;
|
---|
| 302 | dt[i, 4] = median;
|
---|
| 303 | dt[i, 5] = stdDev;
|
---|
| 304 | dt[i, 6] = variance;
|
---|
| 305 | dt[i, 7] = percentile25;
|
---|
| 306 | dt[i, 8] = percentile75;
|
---|
[9713] | 307 | dt[i, 9] = upperAvg;
|
---|
| 308 | dt[i, 10] = lowerAvg;
|
---|
| 309 | dt[i, 11] = firstAvg;
|
---|
| 310 | dt[i, 12] = lastAvg;
|
---|
| 311 | dt[i, 13] = k;
|
---|
| 312 | dt[i, 14] = r;
|
---|
[9353] | 313 |
|
---|
| 314 | i++;
|
---|
[11376] | 315 | progress.ProgressValue = ((double)runs.Count) / i;
|
---|
[9353] | 316 | }
|
---|
[9378] | 317 | stringConvertibleMatrixView.Content = dt;
|
---|
[9353] | 318 |
|
---|
[9378] | 319 | for (i = 0; i < runs.Count(); i++) {
|
---|
| 320 | stringConvertibleMatrixView.DataGridView.Rows[i].DefaultCellStyle.ForeColor = runs[i].Color;
|
---|
| 321 | }
|
---|
[9353] | 322 | }
|
---|
| 323 | }
|
---|
| 324 | }
|
---|