Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2564,7 +2564,7 @@ base.wrap,"\nbase.wrap( v:number, min:number, max:number )\n Wraps a value to
base.xlog1py,"\nbase.xlog1py( x:number, y:number )\n Computes `x * ln(y+1)` so that the result is `0` if `x = 0`.\n"
base.xlogy,"\nbase.xlogy( x:number, y:number )\n Computes `x * ln(y)` so that the result is `0` if `x = 0`.\n"
base.zeta,"\nbase.zeta( s:number )\n Evaluates the Riemann zeta function as a function of a real variable `s`.\n"
BERNDT_CPS_WAGES_1985,"\nBERNDT_CPS_WAGES_1985()\n Returns a random sample of 534 workers from the Current Population Survey\n (CPS) from 1985, including their wages and and other characteristics.\n"
BERNDT_CPS_WAGES_1985,"\nBERNDT_CPS_WAGES_1985()\n Returns a random sample of 534 workers from the Current Population Survey\n (CPS) from 1985, including their wages and other characteristics.\n"
bifurcate,"\nbifurcate( collection:Array|TypedArray|Object, [options:Object,] \n filter:Array|TypedArray|Object )\n Splits values into two groups.\n"
bifurcateBy,"\nbifurcateBy( collection:Array|TypedArray|Object, [options:Object,] \n predicate:Function )\n Splits values into two groups according to a predicate function.\n"
bifurcateByAsync,"\nbifurcateByAsync( collection:Array|TypedArray|Object, [options:Object,] \n predicate:Function, done:Function )\n Splits values into two groups according to a predicate function.\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ limitations under the License.

<section class="intro">

The [mode][mode] for an [arcsine][arcsine-distribution] random variable with with minimum support `a` and maximum support `b` is
The [mode][mode] for an [arcsine][arcsine-distribution] random variable with minimum support `a` and maximum support `b` is

<!-- <equation class="equation" label="eq:arcsine_mode" align="center" raw="\operatorname{mode}\left( X \right) = \{ a, b \}" alt="Mode for an arcsine distribution."> -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ limitations under the License.

<section class="intro">

The [skewness][skewness] for an [arcsine][arcsine-distribution] random variable with with minimum support `a` and maximum support `b` is
The [skewness][skewness] for an [arcsine][arcsine-distribution] random variable with minimum support `a` and maximum support `b` is

<!-- <equation class="equation" label="eq:arcsine_skewness" align="center" raw="\operatorname{skew}\left( X \right) = 0" alt="Skewness for an arcsine distribution."> -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function discreteUniformCDF( x ) {
}

/**
* Evaluates the the natural logarithm of the cumulative distribution function (logCDF).
* Evaluates the natural logarithm of the cumulative distribution function (logCDF).
*
* @private
* @param {number} x - input value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function uniformCDF( x ) {
}

/**
* Evaluates the the natural logarithm of the cumulative distribution function (logCDF).
* Evaluates the natural logarithm of the cumulative distribution function (logCDF).
*
* @private
* @param {number} x - input value
Expand Down
Loading