Skip to content
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

[WIP] Add Rademacher statistical distribution #245

Open
wants to merge 42 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6dd964c
created README.md
justin1dennison Nov 1, 2018
5f77b1a
added package.json
justin1dennison Nov 1, 2018
67d6e08
changed to floating point numbers for examples
justin1dennison Nov 1, 2018
a69022c
created readme for pmf of rademacher distribution
justin1dennison Nov 1, 2018
7fef611
removed the reference to factory function for pmf
justin1dennison Nov 2, 2018
6d14d99
added pmf package.json
justin1dennison Nov 2, 2018
18d5380
added simple examples
justin1dennison Nov 2, 2018
6925b58
implementation of rademacher pmf
justin1dennison Nov 2, 2018
2936748
added rademacher pmf benchmarks
justin1dennison Nov 2, 2018
7b1be35
added rademacher pmf tests
justin1dennison Nov 2, 2018
4a04ed3
added repl docs
justin1dennison Nov 2, 2018
9001eb9
added to lib
justin1dennison Nov 6, 2018
f11f1c6
added rademacher cdf package.json
justin1dennison Nov 6, 2018
882bd5a
added rademacher cdf readme
justin1dennison Nov 6, 2018
af53bfa
added examples for rademacher cdf
justin1dennison Nov 6, 2018
0d64805
added rademacher cdf implementation
justin1dennison Nov 6, 2018
1a56542
removed extraneous spaces
justin1dennison Nov 6, 2018
56eb9ca
added rademacher cdf benchmark
justin1dennison Nov 6, 2018
c76b866
added tests for rademacher cdf
justin1dennison Nov 6, 2018
d8e3305
added repl docs for rademacher cdf
justin1dennison Nov 6, 2018
23e86f9
added cdf to main module lib
justin1dennison Nov 6, 2018
ac87727
applied suggestions
justin1dennison Nov 7, 2018
17869a7
added rademacher mean readme
justin1dennison Nov 8, 2018
54610ba
added rademacher mean package.json
justin1dennison Nov 8, 2018
5edc3eb
fixed README rademacher mean
justin1dennison Nov 8, 2018
d2d6835
added simple examples for rademacher mean
justin1dennison Nov 8, 2018
2a8e01b
implemented rademacher mean
justin1dennison Nov 8, 2018
958b2af
added rademacher mean benchmark
justin1dennison Nov 8, 2018
f9d472f
added basic tests for rademacher mean
justin1dennison Nov 8, 2018
c154461
added repl.txt for rademacher mean
justin1dennison Nov 8, 2018
30794ea
added rademacher mean to the main module
justin1dennison Nov 8, 2018
74165ff
updated with suggestions to mean of rademacher
justin1dennison Nov 16, 2018
2ba363a
add rademacher median readme
justin1dennison Nov 16, 2018
566725d
add package.json for rademacher median
justin1dennison Nov 16, 2018
d054f0e
implemented rademacher median
justin1dennison Nov 16, 2018
77c0dd7
added simple example for rademacher
justin1dennison Nov 16, 2018
63b377d
added tests for rademacher median
justin1dennison Nov 16, 2018
3324595
add rademacher median benchmarks
justin1dennison Nov 16, 2018
df71573
added repl docs for rademacher median
justin1dennison Nov 16, 2018
df6685f
removed extraneous spaces
justin1dennison Nov 19, 2018
f761317
applied fixes for format and typos
justin1dennison Nov 19, 2018
b7a0a28
applied suggestions for fixes
justin1dennison Mar 21, 2019
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
112 changes: 112 additions & 0 deletions lib/node_modules/@stdlib/stats/base/dists/rademacher/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!--

@license Apache-2.0

Copyright (c) 2018 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.

-->

# Rademacher

> Rademacher distribution.

<!-- Package usage documentation. -->

<section class="usage">

## Usage

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

#### rademacher

Rademacher distribution.

```javascript
var dist = rademacher;
// returns {...}
```

The namespace contsiner the following distribution functions:

<!-- <toc pattern="*+(cdf|pmf|mgf|quantile)*"> -->

<!-- </toc> -->

The namespace contains the following functions for calculating distribution properties:

<!-- <toc pattern="*+(entropy|kurtosis|mean|median|mode|skewness|stdev|variance)*"> -->

<!-- </toc> -->

The namespace container a constructor function for creating a [Rademacher][rademacher-distribution] distribution object.

<!-- <toc pattern="*ctor*"> -->

<!-- </toc> -->

```javascript
var Rademacher = require( '@stdlib/stats/base/dists/rademacher' ).Rademacher;

var dist = new Rademacher( 5.0 );

var y = dist.pmf( -1.0 );
// returns 0.5

y = dist.pmf( 1.0 );
// returns 0.5

y = dist.pmf( 0.4 );
// returns 0.0
```

</section>

<!-- /.usage -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

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

```javascript
var getKeys = require( '@stdlib/utils/keys' );
var rademacher = require( '@stdlib/stats/base/dists/rademacher' );

console.log( getKeys( rademacher ) );
```

</section>

<!-- /.examples -->

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

<section class="links">

[rademacher-distribution]: https://en.wikipedia.org/wiki/Rademacher_distribution

<!-- <toc-links> -->

<!-- </toc-links> -->

</section>

<!-- /.links -->
107 changes: 107 additions & 0 deletions lib/node_modules/@stdlib/stats/base/dists/rademacher/cdf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<!--

@license Apache-2.0

Copyright (c) 2018 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.

-->

# Cumulative Distribution Function

> [Rademacher][rademacher-distribution] distribution [cumulative distribution function][cdf].

<section class="intro">

The [cumulative distribution function][cdf] for a [Rademacher][rademacher-distribution] random variable is

<!-- <equation class="equation" label="eq:rademacher_cdf" align="center" raw="F(k)= \begin{cases} 0 & \text{ for } k < -1 \\ 1/2 & \text{ for } -1 \le k < 1 \\ 1 & \text{ for } k \ge 1 \end{cases}" alt="Cumulative distribution function for a Rademacher distribution."> -->

<div class="equation" align="center" data-raw-text="F(k)= \begin{cases} 0 & \text{ for } k < -1 \\ 1/2 & \text{ for } -1 \le k < 1 \\ 1 & \text{ for } k \ge 1 \end{cases}" data-equation="eq:rademacher_cdf">
<img src="" alt="Cumulative distribution function for a Rademacher distribution." />
<br />
</div>

<!-- </equation> -->

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var cdf = require( '@stdlib/stats/base/dists/rademacher/cdf' );
```

#### cdf( k )

Evaluates the [cumulative distribution function][cdf] for a [Rademacher][rademacher-distribution] distribution.

```javascript
var v = cdf( 0.0 );
// returns 0.5

v = cdf( 1.0 );
// returns 1.0

v = cdf( -2.0 );
// returns 0.0

v = cdf( NaN );
// returns NaN
```

</section>

<!-- /.usage -->

<section class="examples">

## Examples

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

```javascript
var randu = require( '@stdlib/random/base/randu' );
var cdf = require( '@stdlib/stats/base/dists/rademacher/cdf' );

var p;
var k;
var i;

for ( i = 0; i < 10; i++ ) {
k = ( randu()*4.0 ) - 2.0;
p = cdf( k );
console.log( 'k: %d, F(k): %d', k.toFixed( 4 ), p.toFixed( 4 ) );
}
```

</section>

<!-- /.examples -->

<section class="links">

[cdf]: https://en.wikipedia.org/wiki/Cumulative_distribution_function

[rademacher-distribution]: https://en.wikipedia.org/wiki/Rademacher_distribution

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2018 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 randu = require( '@stdlib/random/base/randu' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var cdf = require( './../lib' );
var pkg = require( './../package.json' ).name;


// MAIN //

bench( pkg, function benchmark( b ) {
var i;
var p;
var k;

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
k = ( randu()*2.0 ) - 1.0;
p = cdf( k );
if ( isnan( p ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( p ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

{{alias}}( k )
Evaluates the cumulative distribution function (CDF) for a Rademacher
distribution.

If provided `NaN`, the function returns `NaN`.

Parameters
----------
k: number
Input value.

Returns
-------
out: number
Evaluated CDF.

Examples
--------
> var v = {{alias}}( 0.0 )
0.5
> v = {{alias}}( 1.0 )
1.0
> v = {{alias}}( -2.0 )
0.0
> v = {{alias}}( NaN )
NaN

See Also
--------

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2018 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';

var randu = require( '@stdlib/random/base/randu' );
var cdf = require( '@stdlib/stats/base/dists/rademacher/cdf' );

var p;
var k;
var i;

for ( i = 0; i < 10; i++ ) {
k = ( randu()*4.0 ) - 2.0;
p = cdf( k );
console.log( 'k: %d, F(k): %d', k.toFixed( 4 ), p.toFixed( 4 ) );
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2018 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';

/**
* Rademacher distribution cumulative distribution function (CDF).
*
* @module @stdlib/stats/base/dists/rademacher/cdf
*
* @example
* var cdf = require( '@stdlib/stats/base/dists/rademacher/cdf' );
*
* var v = cdf( 0.0 );
* // returns 0.5
*
* v = cdf( 1.0 );
* // returns 1.0
*
* v = cdf( -2.0 );
* // returns 0.0
*
* v = cdf( NaN );
* // returns NaN
*/

// MODULES //

var cdf = require( './main.js' );


// EXPORTS //

module.exports = cdf;
Loading
Oops, something went wrong.