time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/logistic/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

7.0 KiB

Logistic

Logistic distribution.

Usage

var logistic = require( '@stdlib/stats/base/dists/logistic' );

logistic

Logistic distribution.

var dist = logistic;
// returns {...}

The namespace contains the following distribution functions:

The namespace contains the following functions for calculating distribution properties:

The namespace contains a constructor function for creating a logistic distribution object.

var Logistic = require( '@stdlib/stats/base/dists/logistic' ).Logistic;

var dist = new Logistic( 2.0, 4.0 );

var y = dist.pdf( 2.0 );
// returns 0.0625

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var logistic = require( '@stdlib/stats/base/dists/logistic' );

console.log( objectKeys( logistic ) );