Skip to content

Commit e5989e7

Browse files
authored
chore: update format string
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent a58bfa1 commit e5989e7

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/negative-binomial/variance/examples

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/variance/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ for ( i = 0; i < 10; i++ ) {
3030
r = randu() * 100;
3131
p = randu();
3232
v = variance( r, p );
33-
console.log( 'r: %.4f, p: %.4f, Var(X;r,p): %.4f', r.toFixed( 4 ), p.toFixed( 4 ), v.toFixed( 4 ) );
33+
console.log( 'r: %d, p: %d, Var(X;r,p): %d', r.toFixed( 4 ), p.toFixed( 4 ), v.toFixed( 4 ) );
3434
}

0 commit comments

Comments
 (0)