Skip to content

stdlib-js/stats-base-dists-logistic-kurtosis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e88a1f9 · Apr 14, 2025

History

72 Commits
Apr 14, 2025
Feb 18, 2025
Sep 22, 2023
Sep 22, 2023
Jan 12, 2025
Jan 20, 2025
Jan 20, 2025
Apr 14, 2025
Jan 20, 2025
Jan 20, 2025
Jun 16, 2021
May 1, 2024
Feb 18, 2025
Mar 1, 2024
Jul 27, 2024
Apr 14, 2025
Sep 22, 2023
Jun 14, 2021
Jun 14, 2021
Apr 14, 2025
May 1, 2022
Dec 1, 2022
Jan 12, 2025
Jan 20, 2025
Jan 1, 2024
Jan 3, 2025
Feb 1, 2024
Jan 3, 2025
Jan 3, 2025
Feb 18, 2025
About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

Kurtosis

NPM version Build Status Coverage Status

Logistic distribution excess kurtosis.

The excess kurtosis for a logistic random variable with location μ and scale s > 0 is

Kurt ( X ) = 1.2

Installation

npm install @stdlib/stats-base-dists-logistic-kurtosis

Alternatively,

  • To load the package in a website via a script tag without installation and bundlers, use the ES Module available on the esm branch (see README).
  • If you are using Deno, visit the deno branch (see README for usage intructions).
  • For use in Observable, or in browser/node environments, use the Universal Module Definition (UMD) build available on the umd branch (see README).

The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.

To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.

Usage

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

kurtosis( mu, s )

Returns the excess kurtosis for a logistic distribution with location parameter mu and scale parameter s.

var y = kurtosis( 2.0, 1.0 );
// returns 1.2

y = kurtosis( 0.0, 1.0 );
// returns 1.2

y = kurtosis( -1.0, 4.0 );
// returns 1.2

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

var y = kurtosis( NaN, 1.0 );
// returns NaN

y = kurtosis( 0.0, NaN );
// returns NaN

If provided s <= 0, the function returns NaN.

var y = kurtosis( 0.0, 0.0 );
// returns NaN

y = kurtosis( 0.0, -1.0 );
// returns NaN

Examples

var randu = require( '@stdlib/random-base-randu' );
var kurtosis = require( '@stdlib/stats-base-dists-logistic-kurtosis' );

var mu;
var s;
var y;
var i;

for ( i = 0; i < 10; i++ ) {
    mu = ( randu()*10.0 ) - 5.0;
    s = randu() * 20.0;
    y = kurtosis( mu, s );
    console.log( 'µ: %d, s: %d, Kurt(X;µ,s): %d', mu.toFixed( 4 ), s.toFixed( 4 ), y.toFixed( 4 ) );
}

C APIs

Usage

#include "stdlib/stats/base/dists/logistic/kurtosis.h"

stdlib_base_dists_logistic_kurtosis( mu, s )

Returns the excess kurtosis for a logistic distribution with location mu and scale s.

double out = stdlib_base_dists_logistic_kurtosis( 0.0, 1.0 );
// returns 1.2

The function accepts the following arguments:

  • mu: [in] double location parameter.
  • s: [in] double scale parameter.
double stdlib_base_dists_logistic_kurtosis( const double mu, const double s );

Examples

#include "stdlib/stats/base/dists/logistic/kurtosis.h"
#include <stdlib.h>
#include <stdio.h>

static double random_uniform( const double min, const double max ) {
    double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
    return min + ( v * (max - min) );
}

int main( void ) {
    double mu;
    double s;
    double y;
    int i;

    for ( i = 0; i < 25; i++ ) {
        mu = random_uniform( -5.0, 5.0 );
        s = random_uniform( 0.0, 20.0 );
        y = stdlib_base_dists_logistic_kurtosis( mu, s );
        printf( "µ: %lf, s: %lf, Kurt(X;µ,s): %lf\n", mu, s, y );
    }
}

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2025. The Stdlib Authors.