Skip to content

Commit a558916

Browse files
committed
Auto-generated commit
1 parent 70a8feb commit a558916

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
## Unreleased (2024-06-19)
7+
## Unreleased (2024-07-06)
88

99
<section class="packages">
1010

@@ -74,6 +74,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
7474

7575
<details>
7676

77+
- [`9669982`](https://github.com/stdlib-js/stdlib/commit/966998214dc39efece0cbd557786bc5dde4adcb8) - **style:** resolve lint error _(by Athan Reines)_
7778
- [`352993d`](https://github.com/stdlib-js/stdlib/commit/352993db5c4a41180aa78951a0bc1c9faa8aefc4) - **docs:** improve examples of `stats/base/dists/studentized-range` _(by Rejoan Sardar, Philipp Burckhardt)_
7879
- [`cc5d91f`](https://github.com/stdlib-js/stdlib/commit/cc5d91fb3df5155821344d6fffbeef23f37e8153) - **style:** remove blank line [(#2339)](https://github.com/stdlib-js/stdlib/pull/2339) _(by stdlib-bot, Philipp Burckhardt)_
7980
- [`922122e`](https://github.com/stdlib-js/stdlib/commit/922122e319c37170f16e14ce5d074273fd7f0675) - **docs:** improve examples for `stats/base/dists/normal` namespace _(by NightKnight, Philipp Burckhardt)_

base/dists/studentized-range/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ var tukey = require( '@stdlib/stats/base/dists/studentized-range' );
7070
/*
7171
* Let's consider an example where we are analyzing the test scores of students in a class.
7272
* We're interested in using the Studentized Range Distribution to analyze the range of scores.
73-
* The distribution has parameters: r (number of means), v (degrees of freedom), and nranges (number of ranges).
73+
* The distribution has parameters: r (number of means), v (degrees of freedom), and n (number of ranges).
7474
*/
7575

7676
var r = 5.0;
7777
var v = 20.0;
78-
var nranges = 3.0;
78+
var n = 3.0;
7979

8080
// CDF can be used to calculate the cumulative distribution function at a specific value:
81-
var out = tukey.cdf( 2.0, r, v, nranges );
81+
var out = tukey.cdf( 2.0, r, v, n );
8282
// returns ~0.074
8383

8484
// Quantile can also be used to calculate the quantile function at a specific probability:
85-
out = tukey.quantile( 0.9, r, v, nranges );
85+
out = tukey.quantile( 0.9, r, v, n );
8686
// returns ~4.433
8787
```
8888

0 commit comments

Comments
 (0)