From 0ba9e6f69b1ed1fae923e672ced09a0cdc918505 Mon Sep 17 00:00:00 2001 From: Fahim Abdullah <122386519+fahimlisl@users.noreply.github.com> Date: Mon, 23 Mar 2026 09:26:23 +0000 Subject: [PATCH] chore: fix EditorConfig lint errors (issue #10943) --- .../@stdlib/stats/wilcoxon/examples/index.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/wilcoxon/examples/index.js b/lib/node_modules/@stdlib/stats/wilcoxon/examples/index.js index 58162e560a0c..cff9a5aaa5ac 100644 --- a/lib/node_modules/@stdlib/stats/wilcoxon/examples/index.js +++ b/lib/node_modules/@stdlib/stats/wilcoxon/examples/index.js @@ -38,14 +38,14 @@ for ( i = 0; i < arr.length; i++ ) { out = wilcoxon( arr ); console.log( out.print() ); /* e.g., => - One-Sample Wilcoxon signed rank test + One-Sample Wilcoxon signed rank test - Alternative hypothesis: Median of `x` is not equal to 0 + Alternative hypothesis: Median of `x` is not equal to 0 - pValue: 0.7714 - statistic: 2438.5 + pValue: 0.7714 + statistic: 2438.5 - Test Decision: Fail to reject null in favor of alternative at 5% significance level + Test Decision: Fail to reject null in favor of alternative at 5% significance level */ // Test whether distribution has median of five: @@ -54,12 +54,12 @@ out = wilcoxon( arr, { }); console.log( out.print() ); /* e.g, => - One-Sample Wilcoxon signed rank test + One-Sample Wilcoxon signed rank test - Alternative hypothesis: Median of `x` is not equal to 5 + Alternative hypothesis: Median of `x` is not equal to 5 - pValue: 0.0529 - statistic: 1961.5 + pValue: 0.0529 + statistic: 1961.5 - Test Decision: Fail to reject null in favor of alternative at 5% significance level + Test Decision: Fail to reject null in favor of alternative at 5% significance level */