Skip to content

Commit bcf8292

Browse files
authored
chore: format as floating-point instead of integer values
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent e92c823 commit bcf8292

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/cauchy/quantile/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ var gamma = uniform( 10, EPS, 20.0, opts );
138138
var x0 = uniform( 10, -5.0, 5.0, opts );
139139
var p = uniform( 10, 0.0, 1.0, opts );
140140

141-
logEachMap( 'p: %d, x0: %d, γ: %d, Q(p;x0,γ): %d', p, x0, gamma, quantile );
141+
logEachMap( 'p: %0.4f, x0: %0.4f γ: %0.4f, Q(p;x0,γ): %0.4f', p, x0, gamma, quantile );
142142
```
143143

144144
</section>

lib/node_modules/@stdlib/stats/base/dists/cauchy/quantile/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ var gamma = uniform( 10, EPS, 20.0, opts );
3030
var x0 = uniform( 10, -5.0, 5.0, opts );
3131
var p = uniform( 10, 0.0, 1.0, opts );
3232

33-
logEachMap( 'p: %d, x0: %d, γ: %d, Q(p;x0,γ): %d', p, x0, gamma, quantile );
33+
logEachMap( 'p: %0.4f, x0: %0.4f, γ: %0.4f, Q(p;x0,γ): %0.4f', p, x0, gamma, quantile );

0 commit comments

Comments
 (0)