Skip to content

Commit ed4dee6

Browse files
SumithrajuAditsv27
andcommitted
chore: fix EditorConfig lint errors (issue #10943)
Replace space-based indentation with tabs in example file to comply with project EditorConfig standards. All indentation now uses tabs for consistency with stdlib coding conventions. Fixes #10943 Co-Authored-By: Sumithra Raju <sumithravenkataramanan@gmail.com>
1 parent 33f4c10 commit ed4dee6

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

  • lib/node_modules/@stdlib/stats/wilcoxon/examples

lib/node_modules/@stdlib/stats/wilcoxon/examples/index.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ for ( i = 0; i < arr.length; i++ ) {
3838
out = wilcoxon( arr );
3939
console.log( out.print() );
4040
/* e.g., =>
41-
One-Sample Wilcoxon signed rank test
41+
One-Sample Wilcoxon signed rank test
4242
43-
Alternative hypothesis: Median of `x` is not equal to 0
43+
Alternative hypothesis: Median of `x` is not equal to 0
4444
45-
pValue: 0.7714
46-
statistic: 2438.5
45+
pValue: 0.7714
46+
statistic: 2438.5
4747
48-
Test Decision: Fail to reject null in favor of alternative at 5% significance level
48+
Test Decision: Fail to reject null in favor of alternative at 5% significance level
4949
*/
5050

5151
// Test whether distribution has median of five:
@@ -54,12 +54,12 @@ out = wilcoxon( arr, {
5454
});
5555
console.log( out.print() );
5656
/* e.g, =>
57-
One-Sample Wilcoxon signed rank test
57+
One-Sample Wilcoxon signed rank test
5858
59-
Alternative hypothesis: Median of `x` is not equal to 5
59+
Alternative hypothesis: Median of `x` is not equal to 5
6060
61-
pValue: 0.0529
62-
statistic: 1961.5
61+
pValue: 0.0529
62+
statistic: 1961.5
6363
64-
Test Decision: Fail to reject null in favor of alternative at 5% significance level
64+
Test Decision: Fail to reject null in favor of alternative at 5% significance level
6565
*/

0 commit comments

Comments
 (0)