Skip to content

Commit ccc2002

Browse files
committed
Disable running of code blocks
1 parent 089a106 commit ccc2002

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

lib/node_modules/@stdlib/nlp/lda/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The `iter` parameter denotes the number of sampling iterations. While a common c
7373
Returns the `no` terms with the highest probabilities for chosen topic `k`.
7474

7575
```javascript
76-
var words = getTerms( 0, 3 );
76+
var words = model.getTerms( 0, 3 );
7777
/* returns
7878
[
7979
{ 'word': 'both', 'prob': 0.06315008476532499 },

lib/node_modules/@stdlib/stats/ttest/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ out = ttest( x, y );
9393
*/
9494
```
9595

96+
<!-- run-disable -->
97+
9698
The returned object comes with a `.print()` method which when invoked will print a formatted output of the hypothesis test results. `print` accepts a `numdigits` option that controls the number of decimal digits displayed for the outputs.
9799

98100
```javascript

lib/node_modules/@stdlib/stats/ttest2/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ var out = ttest2( x, y );
5353

5454
The returned object comes with a `.print()` method which when invoked will print a formatted output of the results of the hypothesis test.
5555

56+
<!-- run-disable -->
57+
5658
```javascript
5759
console.log( out.print() );
5860
/* e.g., =>

lib/node_modules/@stdlib/stats/ztest/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ var out = ztest( arr, 2.0 );
6161

6262
The returned object comes with a `.print()` method which when invoked will print a formatted output of the hypothesis test results. `print` accepts a `numdigits` option that controls the number of decimal digits displayed for the outputs.
6363

64+
<!-- run-disable -->
65+
6466
```javascript
6567
var table = out.print({
6668
'numdigits': 3

lib/node_modules/@stdlib/stats/ztest2/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ var out = ztest2( x, y, 1.0, 2.0 );
5252

5353
The returned object comes with a `.print()` method which when invoked will print a formatted output of the results of the hypothesis test.
5454

55+
<!-- run-disable -->
56+
5557
```javascript
5658
console.log( out.print() );
5759
/* e.g., =>

0 commit comments

Comments
 (0)