diff --git a/lib/node_modules/@stdlib/stats/range/README.md b/lib/node_modules/@stdlib/stats/range/README.md index 63565225e2fa..ec3996dc9eef 100644 --- a/lib/node_modules/@stdlib/stats/range/README.md +++ b/lib/node_modules/@stdlib/stats/range/README.md @@ -190,12 +190,10 @@ The method accepts the following options: ```javascript var uniform = require( '@stdlib/random/uniform' ); var getDType = require( '@stdlib/ndarray/dtype' ); -var ndarray2array = require( '@stdlib/ndarray/to-array' ); var range = require( '@stdlib/stats/range' ); // Generate an array of random numbers: var x = uniform( [ 5, 5 ], 0.0, 20.0 ); -console.log( ndarray2array( x ) ); // Perform a reduction: var y = range( x, { @@ -205,9 +203,7 @@ var y = range( x, { // Resolve the output array data type: var dt = getDType( y ); console.log( dt ); - -// Print the results: -console.log( ndarray2array( y ) ); +// => 'float64' ```