Skip to content

feat: add stats/base/dists/bradford/pdf #5280

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Mar 8, 2025
Merged
Show file tree
Hide file tree
Changes from 12 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
161 changes: 161 additions & 0 deletions lib/node_modules/@stdlib/stats/base/dists/bradford/pdf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
<!--

@license Apache-2.0

Copyright (c) 2025 The Stdlib Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

# Probability Density Function

> [Bradford][bradford-distribution] distribution [probability density function][pdf] (PDF).

<section class="intro">

The [probability density function][pdf] (PDF) for a [Bradford][bradford-distribution] random variable is

<!-- <equation class="equation" label="eq:bradford_pdf" align="center" raw="f(x;c)=\frac{c}{(\ln(1+c)) (1 + cx)}" alt="Probability density function (PDF) for a Bradford distribution."> -->

```math
f(x;c)=\frac{c}{(\ln(1+c)) (1 + cx)}
```

<!-- <div class="equation" align="center" data-raw-text="f(x;c)=\frac{c}{(\ln(1+c)) (1 + cx)}" data-equation="eq:bradford_pdf">
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@51534079fef45e990850102147e8945fb023d1d0/lib/node_modules/@stdlib/stats/base/dists/bradford/pdf/docs/img/equation_bradford_pdf.svg" alt="Probability density function (PDF) for a Bradford distribution.">
<br>
</div> -->

<!-- </equation> -->

where `c > 0` is the shape parameter of the distribution.

</section>

<!-- /.intro -->

<section class="usage">

## Usage

```javascript
var pdf = require( '@stdlib/stats/base/dists/bradford/pdf' );
```

#### pdf( x, c )

Evaluates the [probability density function][pdf] (PDF) for a [Bradford][bradford-distribution] distribution with shape parameter `c` at a value `x`.

```javascript
var y = pdf( 0.1, 0.1 );
// returns ~1.039

y = pdf( 0.5, 5.0 );
// returns ~0.797

y = pdf( 1.0, 10.0 );
// returns ~0.379
```

If provided `NaN` as any argument, the function returns `NaN`.

```javascript
var y = pdf( NaN, 1.0 );
// returns NaN

y = pdf( 0.0, NaN );
// returns NaN
```

If provided a `x` outside the support `[0,1]`, the function returns `0`.

```javascript
var y = pdf( 2.0, 1.0 );
// returns 0.0

y = pdf( -0.5, 1.0 );
// returns 0.0
```

If provided a shape parameter `c <= 0`, the function returns `NaN`.

```javascript
var y = pdf( 0.5, 0.0 );
// returns NaN

y = pdf( 0.5, -5.0 );
// returns NaN
```

#### pdf.factory( c )

Returns a function for evaluating the [PDF][pdf] of a [Bradford][bradford-distribution] distribution with shape parameter `c`.

```javascript
var myPDF = pdf.factory( 5.0 );
var y = myPDF( 0.5 );
// returns ~0.797

y = myPDF( 1.0 );
// returns ~0.465
```

</section>

<!-- /.usage -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var uniform = require( '@stdlib/random/array/uniform' );
var pdf = require( '@stdlib/stats/base/dists/bradford/pdf' );

var x = uniform( 10, 0.0, 1.0 );
var c = uniform( 10, 0.1, 10.0 );

var y;
var i;
for ( i = 0; i < x.length; i++ ) {
y = pdf( x[ i ], c[ i ] );
console.log( 'x: %d, c: %d, f(x;c): %d', x[ i ].toFixed( 4 ), c[ i ].toFixed( 4 ), y.toFixed( 4 ) );
}
```

</section>

<!-- /.examples -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

[pdf]: https://en.wikipedia.org/wiki/Probability_density_function

[bradford-distribution]: https://en.wikipedia.org/wiki/Bradford%27s_law

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var uniform = require( '@stdlib/random/array/uniform' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pkg = require( './../package.json' ).name;
var pdf = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var x;
var c;
var y;
var i;

x = uniform( 100, 0.0, 1.0 );
c = uniform( 100, 0.1, 10.0 );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
y = pdf( x[ i % x.length ], c[ i % c.length ] );
if ( isnan( y ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( y ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});

bench( pkg+':factory', function benchmark( b ) {
var mypdf;
var x;
var y;
var i;

x = uniform( 100, 0.0, 1.0 );
mypdf = pdf.factory( 5.0 );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
y = mypdf( x[ i % x.length ] );
if ( isnan( y ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( y ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

{{alias}}( x, c )
Evaluates the probability density function (PDF) for a Bradford distribution
with shape parameter `c` at a value `x`.

If provided `NaN` as any argument, the function returns `NaN`.

If provided `c <= 0`, the function returns `NaN`.

Parameters
----------
x: number
Input value.

c: number
Shape parameter.

Returns
-------
out: number
Evaluated PDF.

Examples
--------
> var y = {{alias}}( 0.1, 0.1 )
~1.039
> y = {{alias}}( 0.5, 5.0 )
~0.797
> y = {{alias}}( 1.0, 10.0 )
~0.379
> y = {{alias}}( 2.0, 0.5 )
0.0
> y = {{alias}}( -1.0, 0.5 )
0.0

> y = {{alias}}( 0.5, 0.0 )
NaN
> y = {{alias}}( 0.5, -5.0 )
NaN

> y = {{alias}}( NaN, 1.0 )
NaN
> y = {{alias}}( 1.0, NaN )
NaN


{{alias}}.factory( c )
Returns a function for evaluating the probability density function (PDF) of
a Bradford distribution with shape parameter `c`.

Parameters
----------
c: number
Shape parameter.

Returns
-------
pdf: Function
Probability density function (PDF).

Examples
--------
> var myPDF = {{alias}}.factory( 5.0 );
> var y = myPDF( 0.5 )
~0.797
> y = myPDF( 1.0 )
~0.465

See Also
--------

Loading