@stdlib/stats-base-dists-t

Student's t distribution.

Usage no npm install needed!

<script type="module">
  import stdlibStatsBaseDistsT from 'https://cdn.skypack.dev/@stdlib/stats-base-dists-t';
</script>

README

Student's T

NPM version Build Status Coverage Status dependencies

Student's t distribution.

Installation

npm install @stdlib/stats-base-dists-t

Usage

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

t

Student's t distribution.

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

The namespace contains the following distribution functions:

  • cdf( x, v ): Student's t distribution cumulative distribution function (CDF).
  • logcdf( x, v ): evaluate the natural logarithm of the cumulative distribution function (CDF) for a Student's t distribution.
  • logpdf( x, v ): evaluate the natural logarithm of the probability density function (PDF) for a Student's t distribution.
  • pdf( x, v ): Student's t distribution probability density function (PDF).
  • quantile( p, v ): Student's t distribution quantile function.

The namespace contains the following functions for calculating distribution properties:

The namespace contains a constructor function for creating a Student's t distribution object.

  • T( [v] ): Student's t distribution constructor.
var T = require( '@stdlib/stats-base-dists-t' ).T;

var dist = new T( 2.0 );

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

Examples

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

console.log( objectKeys( t ) );

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-2021. The Stdlib Authors.