time-to-botec/js/node_modules/@stdlib/stats/base/dists/lognormal
..
cdf
ctor
docs/types
entropy
kurtosis
lib
logpdf
mean
median
mode
pdf
quantile
skewness
stdev
variance
package.json
README.md

Lognormal

Lognormal distribution.

Usage

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

lognormal

Lognormal distribution.

var dist = lognormal;
// 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 lognormal distribution object.

var LogNormal = require( '@stdlib/stats/base/dists/lognormal' ).LogNormal;

var dist = new LogNormal( 2.0, 4.0 );

var y = dist.cdf( 0.5 );
// returns ~0.25

Examples

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

console.log( objectKeys( lognormal ) );