[9353] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9706] | 3 | * Copyright (C) 2002-2013 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;
|
---|
[9913] | 25 | using System.Threading.Tasks;
|
---|
[9353] | 26 | using System.Windows.Forms;
|
---|
[9937] | 27 | using HeuristicLab.Collections;
|
---|
[9353] | 28 | using HeuristicLab.Core.Views;
|
---|
| 29 | using HeuristicLab.Data;
|
---|
| 30 | using HeuristicLab.MainForm;
|
---|
| 31 | using HeuristicLab.Optimization;
|
---|
| 32 | using HeuristicLab.Optimization.Views;
|
---|
| 33 |
|
---|
| 34 | namespace HeuristicLab.Analysis.Statistics {
|
---|
[9917] | 35 | [View("Statistical Tests", "HeuristicLab.Analysis.Statistics.InfoResources.StatisticalTestsInfo.rtf")]
|
---|
[9353] | 36 | [Content(typeof(RunCollection), false)]
|
---|
| 37 | public sealed partial class StatisticalTestingView : ItemView {
|
---|
[9950] | 38 | private const double significanceLevel = 0.05;
|
---|
[9353] | 39 | private double[][] data;
|
---|
| 40 |
|
---|
| 41 | public StatisticalTestingView() {
|
---|
| 42 | InitializeComponent();
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | public new RunCollection Content {
|
---|
| 46 | get { return (RunCollection)base.Content; }
|
---|
| 47 | set { base.Content = value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | public override bool ReadOnly {
|
---|
| 51 | get { return true; }
|
---|
| 52 | set { /*not needed because results are always readonly */}
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | protected override void OnContentChanged() {
|
---|
| 56 | base.OnContentChanged();
|
---|
| 57 |
|
---|
| 58 | if (Content != null) {
|
---|
| 59 | UpdateResultComboBox();
|
---|
| 60 | UpdateGroupsComboBox();
|
---|
[9389] | 61 | FillCompComboBox();
|
---|
[9353] | 62 | RebuildDataTable();
|
---|
| 63 | }
|
---|
[9911] | 64 | UpdateCaption();
|
---|
[9353] | 65 | }
|
---|
| 66 |
|
---|
[9911] | 67 | private void UpdateCaption() {
|
---|
[9913] | 68 | Caption = Content != null ? Content.OptimizerName + " Statistical Tests" : ViewAttribute.GetViewName(GetType());
|
---|
[9911] | 69 | }
|
---|
| 70 |
|
---|
[9353] | 71 | #region events
|
---|
| 72 | protected override void RegisterContentEvents() {
|
---|
| 73 | base.RegisterContentEvents();
|
---|
[9937] | 74 | Content.ItemsAdded += new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 75 | Content.ItemsRemoved += new CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 76 | Content.CollectionReset += new CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[9911] | 77 | Content.UpdateOfRunsInProgressChanged += Content_UpdateOfRunsInProgressChanged;
|
---|
[9353] | 78 | }
|
---|
| 79 |
|
---|
| 80 | protected override void DeregisterContentEvents() {
|
---|
| 81 | base.DeregisterContentEvents();
|
---|
[9937] | 82 | Content.ItemsAdded -= new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
|
---|
| 83 | Content.ItemsRemoved -= new CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
|
---|
| 84 | Content.CollectionReset -= new CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
|
---|
[9911] | 85 | Content.UpdateOfRunsInProgressChanged -= Content_UpdateOfRunsInProgressChanged;
|
---|
[9353] | 86 | }
|
---|
[9911] | 87 |
|
---|
[9937] | 88 | private void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[9911] | 89 | RebuildDataTable();
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[9937] | 92 | private void Content_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[9911] | 93 | RebuildDataTable();
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[9937] | 96 | private void Content_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[9911] | 97 | RebuildDataTable();
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | void Content_UpdateOfRunsInProgressChanged(object sender, EventArgs e) {
|
---|
| 101 | if (!Content.UpdateOfRunsInProgress) {
|
---|
| 102 | RebuildDataTable();
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
[9353] | 105 | #endregion
|
---|
| 106 |
|
---|
| 107 | private void UpdateGroupsComboBox() {
|
---|
| 108 | groupComboBox.Items.Clear();
|
---|
| 109 |
|
---|
| 110 | var parameters = (from run in Content
|
---|
| 111 | where run.Visible
|
---|
| 112 | from param in run.Parameters
|
---|
| 113 | select param.Key).Distinct().ToArray();
|
---|
| 114 |
|
---|
| 115 | foreach (var p in parameters) {
|
---|
| 116 | var variations = (from run in Content
|
---|
| 117 | where run.Visible && run.Parameters.ContainsKey(p) &&
|
---|
| 118 | (run.Parameters[p] is IntValue || run.Parameters[p] is DoubleValue ||
|
---|
| 119 | run.Parameters[p] is StringValue || run.Parameters[p] is BoolValue)
|
---|
| 120 | select ((dynamic)run.Parameters[p]).Value).Distinct();
|
---|
| 121 |
|
---|
| 122 | if (variations.Count() > 1) {
|
---|
| 123 | groupComboBox.Items.Add(p);
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | if (groupComboBox.Items.Count > 0) {
|
---|
| 128 | //try to select something different than "Seed" or "Algorithm Name" as this makes no sense
|
---|
| 129 | //and takes a long time to group
|
---|
| 130 | List<int> possibleIndizes = new List<int>();
|
---|
| 131 | for (int i = 0; i < groupComboBox.Items.Count; i++) {
|
---|
| 132 | if (groupComboBox.Items[i].ToString() != "Seed"
|
---|
| 133 | && groupComboBox.Items[i].ToString() != "Algorithm Name") {
|
---|
| 134 | possibleIndizes.Add(i);
|
---|
| 135 | }
|
---|
| 136 | }
|
---|
| 137 |
|
---|
| 138 | if (possibleIndizes.Count > 0) {
|
---|
| 139 | groupComboBox.SelectedItem = groupComboBox.Items[possibleIndizes.First()];
|
---|
| 140 | } else {
|
---|
| 141 | groupComboBox.SelectedItem = groupComboBox.Items[0];
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | private string[] GetColumnNames(IEnumerable<IRun> runs) {
|
---|
| 147 | string parameterName = (string)groupComboBox.SelectedItem;
|
---|
| 148 | var r = runs.Where(x => x.Parameters.ContainsKey(parameterName));
|
---|
| 149 | return r.Select(x => ((dynamic)x.Parameters[parameterName]).Value).Distinct().Select(x => (string)x.ToString()).ToArray();
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | private void UpdateResultComboBox() {
|
---|
| 153 | resultComboBox.Items.Clear();
|
---|
| 154 | var results = (from run in Content
|
---|
| 155 | where run.Visible
|
---|
| 156 | from result in run.Results
|
---|
| 157 | where result.Value is IntValue || result.Value is DoubleValue
|
---|
| 158 | select result.Key).Distinct().ToArray();
|
---|
| 159 |
|
---|
| 160 | resultComboBox.Items.AddRange(results);
|
---|
| 161 | if (resultComboBox.Items.Count > 0) resultComboBox.SelectedItem = resultComboBox.Items[0];
|
---|
| 162 | }
|
---|
| 163 |
|
---|
[9389] | 164 | private void FillCompComboBox() {
|
---|
| 165 | string parameterName = (string)groupComboBox.SelectedItem;
|
---|
| 166 | if (parameterName != null) {
|
---|
| 167 | string resultName = (string)resultComboBox.SelectedItem;
|
---|
| 168 | if (resultName != null) {
|
---|
| 169 | var runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible);
|
---|
| 170 | var columnNames = GetColumnNames(runs).ToList();
|
---|
| 171 | groupCompComboBox.Items.Clear();
|
---|
| 172 | columnNames.ForEach(x => groupCompComboBox.Items.Add(x));
|
---|
| 173 | if (groupCompComboBox.Items.Count > 0) groupCompComboBox.SelectedItem = groupCompComboBox.Items[0];
|
---|
| 174 | }
|
---|
| 175 | }
|
---|
| 176 | }
|
---|
| 177 |
|
---|
[9353] | 178 | private void RebuildDataTable() {
|
---|
| 179 | string parameterName = (string)groupComboBox.SelectedItem;
|
---|
| 180 | if (parameterName != null) {
|
---|
| 181 | string resultName = (string)resultComboBox.SelectedItem;
|
---|
| 182 |
|
---|
| 183 | var runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible);
|
---|
| 184 | var columnNames = GetColumnNames(runs);
|
---|
| 185 | var groups = GetGroups(columnNames, runs);
|
---|
| 186 | data = new double[columnNames.Count()][];
|
---|
| 187 |
|
---|
| 188 | DoubleMatrix dt = new DoubleMatrix(groups.Select(x => x.Count()).Max(), columnNames.Count());
|
---|
| 189 | dt.ColumnNames = columnNames;
|
---|
[9937] | 190 | DataTable histogramDataTable = new DataTable(resultName);
|
---|
[9353] | 191 |
|
---|
[9937] | 192 | for (int i = 0; i < columnNames.Count(); i++) {
|
---|
| 193 | int j = 0;
|
---|
[9353] | 194 | data[i] = new double[groups[i].Count()];
|
---|
[9937] | 195 | DataRow row = new DataRow(columnNames[i]);
|
---|
| 196 | row.VisualProperties.ChartType = DataRowVisualProperties.DataRowChartType.Histogram;
|
---|
| 197 | histogramDataTable.Rows.Add(row);
|
---|
| 198 |
|
---|
[9353] | 199 | foreach (IRun run in groups[i]) {
|
---|
| 200 | dt[j, i] = (double)((dynamic)run.Results[resultName]).Value;
|
---|
| 201 | data[i][j] = dt[j, i];
|
---|
[9937] | 202 | row.Values.Add(dt[j, i]);
|
---|
[9353] | 203 | j++;
|
---|
| 204 | }
|
---|
| 205 | }
|
---|
| 206 |
|
---|
[9937] | 207 | dataTableView.Content = histogramDataTable;
|
---|
[9353] | 208 | stringConvertibleMatrixView.Content = dt;
|
---|
| 209 | }
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | private List<IEnumerable<IRun>> GetGroups(string[] columnNames, IEnumerable<IRun> runs) {
|
---|
| 213 | List<IEnumerable<IRun>> runCols = new List<IEnumerable<IRun>>();
|
---|
| 214 | string parameterName = (string)groupComboBox.SelectedItem;
|
---|
| 215 |
|
---|
| 216 | foreach (string cn in columnNames) {
|
---|
| 217 | var tmpRuns = runs.Where(x => ((string)((dynamic)x.Parameters[parameterName]).Value.ToString()) == cn);
|
---|
| 218 | runCols.Add(tmpRuns);
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | return runCols;
|
---|
| 222 | }
|
---|
| 223 |
|
---|
[9389] | 224 | private void ResetUI() {
|
---|
| 225 | normalityLabel.Image = null;
|
---|
| 226 | groupCompLabel.Image = null;
|
---|
[9749] | 227 | pairwiseLabel.Image = null;
|
---|
[9389] | 228 | pValTextBox.Text = string.Empty;
|
---|
| 229 | equalDistsTextBox.Text = string.Empty;
|
---|
| 230 | }
|
---|
| 231 |
|
---|
[9913] | 232 | private void resultComboBox_SelectedValueChanged(object sender, EventArgs e) {
|
---|
| 233 | RebuildDataTable();
|
---|
| 234 | ResetUI();
|
---|
| 235 | CalculateValues();
|
---|
| 236 | }
|
---|
| 237 |
|
---|
| 238 | private void groupComboBox_SelectedValueChanged(object sender, EventArgs e) {
|
---|
| 239 | FillCompComboBox();
|
---|
| 240 | RebuildDataTable();
|
---|
| 241 | ResetUI();
|
---|
| 242 | CalculateValues();
|
---|
| 243 | }
|
---|
| 244 |
|
---|
[9937] | 245 | private bool VerifyDataLength(bool showMessage) {
|
---|
| 246 | if (data == null || data.Length == 0)
|
---|
| 247 | return false;
|
---|
| 248 |
|
---|
| 249 | //alglib needs at least 5 samples for computation
|
---|
| 250 | if (data.Any(x => x.Length <= 5)) {
|
---|
| 251 | if (showMessage)
|
---|
| 252 | MessageBox.Show(this, "You need to choose samples with a size greater 5.", "HeuristicLab", MessageBoxButtons.OK,
|
---|
| 253 | MessageBoxIcon.Error);
|
---|
| 254 | return false;
|
---|
| 255 | }
|
---|
| 256 | return true;
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[9913] | 259 | private void CalculateValues() {
|
---|
[9937] | 260 | if (!VerifyDataLength(true))
|
---|
| 261 | return;
|
---|
| 262 |
|
---|
[9922] | 263 | if (data != null) {
|
---|
| 264 | MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>()
|
---|
| 265 | .AddOperationProgressToView(this, "Calculating...");
|
---|
[9923] | 266 |
|
---|
| 267 | string curItem = (string)groupCompComboBox.SelectedItem;
|
---|
| 268 | Task.Factory.StartNew(() => CalculateValuesAsync(curItem));
|
---|
[9922] | 269 | }
|
---|
[9913] | 270 | }
|
---|
| 271 |
|
---|
[9923] | 272 | private void CalculateValuesAsync(string groupName) {
|
---|
[9913] | 273 | TestAllGroups();
|
---|
| 274 | CalculateNormality();
|
---|
| 275 | CalculateNormalityDetails();
|
---|
[9923] | 276 | CalculatePairwiseTest(groupName);
|
---|
| 277 | CalculatePairwiseTestDetails(groupName);
|
---|
[9913] | 278 |
|
---|
| 279 | MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
| 280 | }
|
---|
| 281 |
|
---|
[9923] | 282 | private void CalculatePairwise(string groupName) {
|
---|
[9937] | 283 | if (!VerifyDataLength(false))
|
---|
| 284 | return;
|
---|
| 285 |
|
---|
[9913] | 286 | MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().AddOperationProgressToView(this, "Calculating...");
|
---|
[9923] | 287 | Task.Factory.StartNew(() => CalculatePairwiseAsync(groupName));
|
---|
[9913] | 288 | }
|
---|
| 289 |
|
---|
[9923] | 290 | private void CalculatePairwiseAsync(string groupName) {
|
---|
| 291 | CalculatePairwiseTest(groupName);
|
---|
| 292 | CalculatePairwiseTestDetails(groupName);
|
---|
[9913] | 293 |
|
---|
| 294 | MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);
|
---|
| 295 | }
|
---|
| 296 |
|
---|
| 297 | private void TestAllGroups() {
|
---|
[9353] | 298 | double pval = KruskalWallis.Test(data);
|
---|
| 299 | pValTextBox.Text = pval.ToString();
|
---|
[9950] | 300 | if (pval < significanceLevel) {
|
---|
[9913] | 301 | this.Invoke(new Action(() => { groupCompLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; }));
|
---|
[9389] | 302 | } else {
|
---|
[9913] | 303 | this.Invoke(new Action(() => { groupCompLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; }));
|
---|
[9389] | 304 | }
|
---|
[9353] | 305 | }
|
---|
| 306 |
|
---|
[9913] | 307 | private void CalculateNormality() {
|
---|
[9353] | 308 | double val;
|
---|
| 309 | List<double> res = new List<double>();
|
---|
| 310 |
|
---|
| 311 | for (int i = 0; i < data.Length; i++) {
|
---|
| 312 | alglib.jarqueberatest(data[i], data[i].Length, out val);
|
---|
| 313 | res.Add(val);
|
---|
| 314 | }
|
---|
| 315 |
|
---|
[9936] | 316 | // p-value is below significance level and thus the null hypothesis (data is normally distributed) is rejected.
|
---|
[9950] | 317 | if (res.Any(x => x < significanceLevel)) {
|
---|
[9936] | 318 | this.Invoke(new Action(() => { normalityLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; }));
|
---|
| 319 | } else {
|
---|
| 320 | this.Invoke(new Action(() => { normalityLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; }));
|
---|
[9353] | 321 | }
|
---|
| 322 | }
|
---|
| 323 |
|
---|
[9913] | 324 | private void CalculateNormalityDetails() {
|
---|
[9353] | 325 | DoubleMatrix pValsMatrix = new DoubleMatrix(1, stringConvertibleMatrixView.Content.Columns);
|
---|
| 326 | pValsMatrix.ColumnNames = stringConvertibleMatrixView.Content.ColumnNames;
|
---|
| 327 | pValsMatrix.RowNames = new string[] { "p-Value" };
|
---|
| 328 |
|
---|
| 329 | double val;
|
---|
| 330 | for (int i = 0; i < data.Length; i++) {
|
---|
| 331 | alglib.jarqueberatest(data[i], data[i].Length, out val);
|
---|
| 332 | pValsMatrix[0, i] = val;
|
---|
| 333 | }
|
---|
| 334 |
|
---|
[9913] | 335 | this.Invoke(new Action(() => { normalityStringConvertibleMatrixView.Content = pValsMatrix; }));
|
---|
[9353] | 336 | }
|
---|
| 337 |
|
---|
[9923] | 338 | private void CalculatePairwiseTest(string groupName) {
|
---|
[9389] | 339 | int colIndex = 0;
|
---|
[9923] | 340 | IEnumerable<string> columnNames = null;
|
---|
| 341 | this.Invoke(new Action(() => { columnNames = stringConvertibleMatrixView.Content.ColumnNames; }));
|
---|
[9353] | 342 |
|
---|
[9923] | 343 | foreach (string col in columnNames) {
|
---|
| 344 | if (col == groupName) {
|
---|
[9389] | 345 | break;
|
---|
[9353] | 346 | }
|
---|
[9389] | 347 | colIndex++;
|
---|
[9353] | 348 | }
|
---|
| 349 |
|
---|
[9957] | 350 | double[][] newData = FilterDataForPairwiseTest(colIndex);
|
---|
| 351 |
|
---|
[9913] | 352 | double mwuBothtails;
|
---|
| 353 | double mwuLefttail;
|
---|
| 354 | double mwuRighttail;
|
---|
| 355 | int cnt = 0;
|
---|
| 356 |
|
---|
[9957] | 357 | for (int i = 0; i < newData.Length; i++) {
|
---|
| 358 | alglib.mannwhitneyutest(data[colIndex], data[colIndex].Length, newData[i], newData[i].Length, out mwuBothtails, out mwuLefttail, out mwuRighttail);
|
---|
| 359 | if (mwuBothtails > significanceLevel) {
|
---|
| 360 | cnt++;
|
---|
[9913] | 361 | }
|
---|
| 362 | }
|
---|
| 363 |
|
---|
| 364 | double ratio = ((double)cnt) / (data.Length - 1) * 100.0;
|
---|
| 365 | equalDistsTextBox.Text = ratio.ToString() + " %";
|
---|
| 366 |
|
---|
| 367 | if (cnt == 0) {
|
---|
| 368 | this.Invoke(new Action(() => { pairwiseLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; }));
|
---|
| 369 | } else {
|
---|
| 370 | this.Invoke(new Action(() => { pairwiseLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; }));
|
---|
| 371 | }
|
---|
| 372 | }
|
---|
| 373 |
|
---|
[9957] | 374 | private double[][] FilterDataForPairwiseTest(int columnToRemove) {
|
---|
| 375 | double[][] newData = new double[data.Length - 1][];
|
---|
| 376 |
|
---|
| 377 | int i = 0;
|
---|
| 378 | int l = 0;
|
---|
| 379 | while (i < data.Length) {
|
---|
| 380 | if (i != columnToRemove) {
|
---|
| 381 | double[] row = new double[data[i].Length - 1];
|
---|
| 382 | newData[l] = row;
|
---|
| 383 |
|
---|
| 384 | int j = 0, k = 0;
|
---|
| 385 | while (j < row.Length) {
|
---|
| 386 | if (i != columnToRemove) {
|
---|
| 387 | newData[l][j] = data[i][k];
|
---|
| 388 | j++;
|
---|
| 389 | k++;
|
---|
| 390 | } else {
|
---|
| 391 | k++;
|
---|
| 392 | }
|
---|
| 393 | }
|
---|
| 394 | i++;
|
---|
| 395 | l++;
|
---|
| 396 | } else {
|
---|
| 397 | i++;
|
---|
| 398 | }
|
---|
| 399 | }
|
---|
| 400 | return newData;
|
---|
| 401 | }
|
---|
| 402 |
|
---|
[9923] | 403 | private void CalculatePairwiseTestDetails(string groupName) {
|
---|
[9913] | 404 | int colIndex = 0;
|
---|
[9923] | 405 | IEnumerable<string> columnNames = null;
|
---|
| 406 | this.Invoke(new Action(() => { columnNames = stringConvertibleMatrixView.Content.ColumnNames; }));
|
---|
[9913] | 407 |
|
---|
[9923] | 408 | foreach (string col in columnNames) {
|
---|
| 409 | if (col == groupName) {
|
---|
[9913] | 410 | break;
|
---|
| 411 | }
|
---|
| 412 | colIndex++;
|
---|
| 413 | }
|
---|
| 414 |
|
---|
[9957] | 415 | double[][] newData = FilterDataForPairwiseTest(colIndex);
|
---|
| 416 |
|
---|
| 417 | columnNames = columnNames.Where(x => x != groupName).ToList();
|
---|
| 418 |
|
---|
[9950] | 419 | var rowNames = new string[] { "p-Value of Mann-Whitney U", "Adjusted p-Value of Mann-Whitney U",
|
---|
| 420 | "p-Value of T-Test", "Adjusted p-Value of T-Test", "Necessary Sample Size for T-Test", "Cohen's d", "Hedges' g" };
|
---|
| 421 |
|
---|
[9957] | 422 | DoubleMatrix pValsMatrix = new DoubleMatrix(rowNames.Length, columnNames.Count());
|
---|
| 423 | pValsMatrix.ColumnNames = columnNames;
|
---|
[9950] | 424 | pValsMatrix.RowNames = rowNames;
|
---|
[9353] | 425 |
|
---|
| 426 | double mwuBothtails;
|
---|
| 427 | double mwuLefttail;
|
---|
| 428 | double mwuRighttail;
|
---|
[9950] | 429 | double tTestLefttail;
|
---|
[9957] | 430 | double[] mwuPValues = new double[newData.Length];
|
---|
| 431 | double[] tTestPValues = new double[newData.Length];
|
---|
[9950] | 432 | bool[] decision = null;
|
---|
| 433 | double[] adjustedMwuPValues = null;
|
---|
| 434 | double[] adjustedTtestPValues = null;
|
---|
| 435 |
|
---|
[9957] | 436 | for (int i = 0; i < newData.Length; i++) {
|
---|
| 437 | if (i != colIndex) {
|
---|
| 438 | alglib.mannwhitneyutest(data[colIndex], data[colIndex].Length, newData[i], newData[i].Length, out mwuBothtails,
|
---|
| 439 | out mwuLefttail, out mwuRighttail);
|
---|
| 440 | tTestLefttail = TTest.Test(data[colIndex], newData[i]);
|
---|
| 441 | mwuPValues[i] = mwuBothtails;
|
---|
| 442 | tTestPValues[i] = tTestLefttail;
|
---|
| 443 | }
|
---|
[9353] | 444 | }
|
---|
| 445 |
|
---|
[9950] | 446 | adjustedMwuPValues = BonferroniHolm.Calculate(significanceLevel, mwuPValues, out decision);
|
---|
| 447 | adjustedTtestPValues = BonferroniHolm.Calculate(significanceLevel, tTestPValues, out decision);
|
---|
| 448 |
|
---|
[9957] | 449 | for (int i = 0; i < newData.Length; i++) {
|
---|
| 450 | if (i != colIndex) {
|
---|
| 451 | pValsMatrix[0, i] = mwuPValues[i];
|
---|
| 452 | pValsMatrix[1, i] = adjustedMwuPValues[i];
|
---|
| 453 | pValsMatrix[2, i] = tTestPValues[i];
|
---|
| 454 | pValsMatrix[3, i] = adjustedTtestPValues[i];
|
---|
| 455 | pValsMatrix[4, i] = TTest.GetOptimalSampleSize(data[colIndex], newData[i]);
|
---|
| 456 | pValsMatrix[5, i] = SampleSizeDetermination.CalculateCohensD(data[colIndex], newData[i]);
|
---|
| 457 | pValsMatrix[6, i] = SampleSizeDetermination.CalculateHedgesG(data[colIndex], newData[i]);
|
---|
| 458 | }
|
---|
[9950] | 459 | }
|
---|
| 460 |
|
---|
[9913] | 461 | this.Invoke(new Action(() => { pairwiseStringConvertibleMatrixView.Content = pValsMatrix; }));
|
---|
[9353] | 462 | }
|
---|
| 463 |
|
---|
| 464 | private void openBoxPlotToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 465 | RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView();
|
---|
| 466 | boxplotView.Content = Content;
|
---|
| 467 | // TODO: enable as soon as we move to HeuristicLab.Optimization.Views
|
---|
| 468 | // boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;
|
---|
| 469 | // boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem;
|
---|
| 470 | boxplotView.Show();
|
---|
| 471 | }
|
---|
[9389] | 472 |
|
---|
[9913] | 473 | private void groupCompComboBox_SelectedValueChanged(object sender, EventArgs e) {
|
---|
[9923] | 474 | string curItem = (string)groupCompComboBox.SelectedItem;
|
---|
| 475 | CalculatePairwise(curItem);
|
---|
[9389] | 476 | }
|
---|
[9353] | 477 | }
|
---|
| 478 | }
|
---|