Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 21, 2024
1 parent 186dd10 commit 3e6ab71
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 32 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<section class="release" id="unreleased">

## Unreleased (2024-09-17)
## Unreleased (2024-09-21)

<section class="packages">

Expand Down Expand Up @@ -33,6 +33,7 @@ A total of 2 people contributed to this release. Thank you to the following cont

<details>

- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_
Expand Down
8 changes: 4 additions & 4 deletions base/max-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
8 changes: 4 additions & 4 deletions base/min-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
8 changes: 4 additions & 4 deletions base/nanmax-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
8 changes: 4 additions & 4 deletions base/nanmin-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
8 changes: 4 additions & 4 deletions base/nanrange-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
8 changes: 4 additions & 4 deletions base/range-by/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

The callback function is provided four arguments:

- value: array element
- aidx: array index
- sidx: strided index (offset + aidx*stride)
- array: the input array
- value: array element.
- aidx: array index.
- sidx: strided index (offset + aidx*stride).
- array: the input array.

The callback function should return a numeric value.

Expand Down
4 changes: 2 additions & 2 deletions incr/wmean/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

The accumulator function accepts two arguments:

- x: value
- w: weight
- x: value.
- w: weight.

Returns
-------
Expand Down
10 changes: 5 additions & 5 deletions padjust/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

The `method` parameter can be one of the following values:

- **bh**: Benjamini-Hochberg procedure controlling the False Discovery
- bh: Benjamini-Hochberg procedure controlling the False Discovery
Rate (FDR).
- **bonferroni**: Bonferroni correction fixing the family-wise error rate
- bonferroni: Bonferroni correction fixing the family-wise error rate
by multiplying the p-values with the number of comparisons. The Bonferroni
correction is usually a too conservative adjustment compared to the others.
- **by**: Procedure by Benjamini & Yekutieli for controlling the False
- by: Procedure by Benjamini & Yekutieli for controlling the False
Discovery Rate (FDR) under dependence.
- **holm**: Hommel's method controlling family-wise error rate. It is
- holm: Hommel's method controlling family-wise error rate. It is
uniformly more powerful than the Bonferroni correction.
- **hommel**: Hommel's method, which is valid when hypothesis tests are
- hommel: Hommel's method, which is valid when hypothesis tests are
independent. It is more expensive to compute than the other methods.

By default, the number of comparisons for which the p-values should be
Expand Down

0 comments on commit 3e6ab71

Please sign in to comment.