Skip to content

Commit 96b94b3

Browse files
committed
Update artifacts
1 parent 78f0b05 commit 96b94b3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[297,297,100,21,21,100,2,2,100,297,297,100,"a5ea81bcb4e447ebca8d4a1cc177a173383f97c5","2025-07-04 14:39:17 +0000"]
1+
[297,297,100,21,21,100,2,2,100,297,297,100,"fc1934e975eb3d823b146f32aba893b1c7cb8b0f","2025-07-05 14:56:40 +0000"]

stats/strided/ztest2/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1><a href="../../../../index.html">All files</a> stats/strided/ztest2/lib</h1>
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2025-07-04T14:41:34.690Z
134+
at 2025-07-05T14:59:19.606Z
135135
</div>
136136
<script src="../../../../prettify.js"></script>
137137
<script>

stats/strided/ztest2/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
226226
'use strict';
227227
&nbsp;
228228
/**
229-
* Compute a two-sample Z-test for a strided array.
229+
* Compute a two-sample Z-test.
230230
*
231231
* @module @stdlib/stats/strided/ztest2
232232
*
@@ -283,7 +283,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
283283
<div class='footer quiet pad2 space-top1 center small'>
284284
Code coverage generated by
285285
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
286-
at 2025-07-04T14:41:34.690Z
286+
at 2025-07-05T14:59:19.606Z
287287
</div>
288288
<script src="../../../../prettify.js"></script>
289289
<script>

stats/strided/ztest2/main.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
224224
// MAIN //
225225
&nbsp;
226226
/**
227-
* Computes a two-sample Z-test for a strided array.
227+
* Computes a two-sample Z-test.
228228
*
229229
* @param {PositiveInteger} NX - number of indexed elements in `x`
230230
* @param {PositiveInteger} NY - number of indexed elements in `y`
@@ -268,7 +268,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
268268
<div class='footer quiet pad2 space-top1 center small'>
269269
Code coverage generated by
270270
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
271-
at 2025-07-04T14:41:34.690Z
271+
at 2025-07-05T14:59:19.606Z
272272
</div>
273273
<script src="../../../../prettify.js"></script>
274274
<script>

stats/strided/ztest2/ndarray.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
429429
// MAIN //
430430
&nbsp;
431431
/**
432-
* Computes a two-sample Z-test for a strided array using alternative indexing semantics.
432+
* Computes a two-sample Z-test using alternative indexing semantics.
433433
*
434434
* @param {PositiveInteger} NX - number of indexed elements in `x`
435435
* @param {PositiveInteger} NY - number of indexed elements in `y`
@@ -502,11 +502,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
502502
yvar = sigmay * sigmay;
503503
stderr = sqrt( ( xvar / NX ) + ( yvar / NY ) );
504504
&nbsp;
505-
// Compute the arithmetic mean of the input array:
505+
// Compute the arithmetic means of the input arrays:
506506
xmean = mean( NX, x, strideX, offsetX );
507507
ymean = mean( NY, y, strideY, offsetY );
508508
&nbsp;
509-
// Compute the test statistic (i.e., the z-score, which is the distance of the sample mean from the population mean in units of standard error):
509+
// Compute the test statistic (i.e., the z-score, which is the standardized difference between the sample means of x and y, adjusted by the hypothesized difference, in units of the standard error):
510510
stat = ( xmean - ymean - diff ) / stderr;
511511
&nbsp;
512512
// Compute the p-value and confidence interval...
@@ -550,7 +550,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
550550
<div class='footer quiet pad2 space-top1 center small'>
551551
Code coverage generated by
552552
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
553-
at 2025-07-04T14:41:34.690Z
553+
at 2025-07-05T14:59:19.606Z
554554
</div>
555555
<script src="../../../../prettify.js"></script>
556556
<script>

0 commit comments

Comments
 (0)