Gumbel

Gumbel distribution.

Usage

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

gumbel

Gumbel distribution.

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

var Gumbel = require( '@stdlib/stats/base/dists/gumbel' ).Gumbel;

var dist = new Gumbel( 2.0, 4.0 );

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

Examples

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

console.log( objectKeys( gumbel ) );
Did you find this page helpful?