Functions

f
jbtest(x: array): number

Performs the Jarque-Bera test for normality.

f
normcdf(
x: number,
mu?: number,
sigma?: number
): number

Computes the cumulative distribution function (CDF) of a normal distribution.

f
norminv(
p: number,
mu?: number,
sigma?: number
): number

Computes the inverse of the normal cumulative distribution function (CDF).

f
normpdf(
x: number,
mu?: number,
sigma?: number
): number

Computes the probability density function (PDF) of a normal distribution.

Usage

import * as probdistr__Probability_distributions_and_statistical_tests___This_module_provides_utilities_for____Normal_distribution_functions__normcdf__normpdf__norminv____Statistical_tests__jbtest___Jarque_Bera_test_ from "probdistr/index.ts";