Statistical Distributions#
For a general introduction to probability distributions, see: Wikipedia [1228], Wikipedia [1220], Wikipedia [1218], Wikipedia [1235].
The design of this library has been influenced by Bristow et al. [166], Witkovsky [1609].
See also Wikipedia [1215] and Abramowitz and Stegun. [4] (from which the following introductory text has been taken, with small edits).
A real-valued function \(F(x)\) is termed a (univariate) cumulative distribution function (cdf) or simply distribution function if
\(F(x)\) is non-decreasing, i.e. \(F(x_1) \le F(x_2)\) for \(x_1 \le x_2\).
\(F(x)\) is everywhere continuous from the right, i.e. \(F(x) = \lim \limits_{\epsilon \to 0+} F(x+\epsilon)\)
\(F(-\infty) = 0, F(\infty) = 1\).
The function \(F(x)\) signifies the probability of the event “\(X \le x\)”, i.e. Pr \(\{X \le x \} = F(x),\) where \(X\) is a random variable, and thus describes the cdf of \(X.\) The two principle types of distribution functions are termed discrete and continuous.
Discrete distributions: Discrete distributions are characterized by the random variable \(X\) taking on an enumerable number of values \(\ldots x_{-1}, x_0, x_1, \ldots\) with point probabilities \(p_n = \text{Pr} \{X = x_n \} \ge 0,\) which only need to be subject to the restriction \(\sum_n p_n =1.\) The corresponding distribution function can then be written as
where the summation is over all values of x for which \(x_n \le x\). The set \(\{ x_n \}\) of values for which \(p_n > 0\) is termed the domain of he random variable \(X.\) A discrete distribution of a random variable is called a lattice distribution if there exists numbers \(a\) and \(b \ne 0\) such that every possible value of \(X\) can be represented in the form \(a+bn\) where \(n\) takes only integral values.
Continuous distributions: Continuous distributions are characterized by \(F(x)\) being continuous. If \(F(x)\) is absolutely continuous then \(F(x)\) possesses a derivative \(F'(x) = f(x)\) and the cdf can be written as
The derivative \(f(x)\) is termed the probability density function (pdf), and the values of \(x\) for which \(f(x) > 0\) make up the domain of the variable \(X\).
Statistical Distributions
- Introduction to random variables and distributions
- Base class for univariate distributions
rv_base- Boost: Cumulative distribution function
- Boost: Survival function
- Hazard function
- Cumulative Hazard Function
- Boost: Quantile function
- Boost: Inverse survival function
- Boost: Mode
- Boost: Expected value (mean)
- Boost: Median
- Boost: Variance
- Boost: Standard deviation
- Boost: Skewness
- Boost: Kurtosis
- Boost: Kurtosis excess
- Boost: Support, lower endpoint
- Boost: Support, upper endpoint
- Boost: Range, lower endpoint
- Boost: Range, upper endpoint
- Characteristic function
- Moment generating function
- Cumulant generating function
- Raw Moments
- Central Moments
- Cumulants
- Base class for continuous univariate distributions
- Base class for discrete univariate distributions
- Closed form distributions, based on elementary functions
- Boost: Arcsine Distribution
- Boost: Cauchy distribution
- Boost: Exponential distribution
Ctx.exponential_pdf()Ctx.exponential_cdf()Ctx.exponential_qtf()ctx.dist_exponentialdist_exponential.pdf()dist_exponential.cdf()dist_exponential.sf()dist_exponential.qtf()dist_exponential.isf()dist_exponential.c_x()dist_exponential.m_x()dist_exponential.k_x()dist_exponential.moments()dist_exponential.cumulants()
- Boost: Gumbel (Generalized Extreme Value distribution Type-I) distribution
- Boost: Hyperexponential Distribution
Ctx.hyperexponential_pdf()Ctx.hyperexponential_cdf()Ctx.hyperexponential_qtf()ctx.dist_hyperexponentialdist_hyperexponential.pdf()dist_hyperexponential.cdf()dist_hyperexponential.sf()dist_hyperexponential.qtf()dist_hyperexponential.isf()dist_hyperexponential.c_x()dist_hyperexponential.m_x()dist_hyperexponential.k_x()dist_hyperexponential.moments()dist_hyperexponential.cumulants()
- !!!Boost: Kumaraswamy distribution
Ctx.kumaraswamy_pdf()Ctx.kumaraswamy_cdf()Ctx.kumaraswamy_qtf()ctx.dist_kumaraswamydist_kumaraswamy.pdf()dist_kumaraswamy.cdf()dist_kumaraswamy.sf()dist_kumaraswamy.qtf()dist_kumaraswamy.isf()dist_kumaraswamy.c_x()dist_kumaraswamy.m_x()dist_kumaraswamy.k_x()dist_kumaraswamy.moments()dist_kumaraswamy.cumulants()
- Boost: Laplace distribution
- Boost: Logistic distribution
- Boost: Pareto distribution
- Boost: Rayleigh distribution
- Boost: Triangular Distribution
Ctx.triangular_pdf()Ctx.triangular_cdf()Ctx.triangular_qtf()ctx.dist_triangulardist_triangular.pdf()dist_triangular.cdf()dist_triangular.sf()dist_triangular.qtf()dist_triangular.isf()dist_triangular.c_x()dist_triangular.m_x()dist_triangular.k_x()dist_triangular.moments()dist_triangular.cumulants()
- Boost: Uniform distribution
- Boost: Weibull (Minimum-Type-III) distribution
- Dagum (Burr Type III) distribution
- Fisk (log-logistic) distribution
- Fréchet (Maximum/Minimum-Type-II or Inverse Weibull) distribution
- Generalized Extreme Value (Maximum) or GEV distribution
- Generalized Pareto distribution
- Gompertz-Makeham distribution
- Lomax distribution
- Shifted Gompertz distribution
ctx.dist_shifted_gompertzdist_shifted_gompertz.pdf()dist_shifted_gompertz.cdf()dist_shifted_gompertz.sf()dist_shifted_gompertz.qtf()dist_shifted_gompertz.isf()dist_shifted_gompertz.c_x()dist_shifted_gompertz.m_x()dist_shifted_gompertz.k_x()dist_shifted_gompertz.moments()dist_shifted_gompertz.cumulants()
- Singh-Maddala (Burr Type XII) distribution
- Closed form distributions, based on the error function
- !!!Boost: Lévy distribution
- Boost: Lognormal (Johnson \(S_L\)) distribution
- !!!Boost: Moyal Distribution
- Boost: Normal (Johnson \(S_N\)) distribution
- Boost: Skew normal Distribution
Ctx.skewnormal_pdf()Ctx.skewnormal_cdf()Ctx.skewnormal_qtf()ctx.dist_skewnormaldist_skewnormal.pdf()dist_skewnormal.cdf()dist_skewnormal.sf()dist_skewnormal.qtf()dist_skewnormal.isf()dist_skewnormal.c_x()dist_skewnormal.m_x()dist_skewnormal.k_x()dist_skewnormal.moments()dist_skewnormal.cumulants()
- Boost: Wald (or Inverse Gaussian) distribution
- Birnbaum-Saunders Distribution
- Exponentially Modified Gaussian (EMG) distribution
- Folded normal distribution
- Half-normal distribution
- Johnson \(S_B\) distribution
- Johnson \(S_U\) distribution
- Normal maximum distribution, \(\rho_{ij, i \ne j} = 0\)
- Normal maximum modulus distribution, \(\rho_{ij, i \ne j} = 0\)
- Sinh-arcsinh normal distribution
- Truncated normal distribution
ctx.dist_truncated_normaldist_truncated_normal.pdf()dist_truncated_normal.cdf()dist_truncated_normal.sf()dist_truncated_normal.qtf()dist_truncated_normal.isf()dist_truncated_normal.c_x()dist_truncated_normal.m_x()dist_truncated_normal.k_x()dist_truncated_normal.moments()dist_truncated_normal.cumulants()
- Closed form distributions, based on the incomplete gamma function
- !!!Boost: Chi Distribution
- Boost: Chi-Squared distribution
Ctx.chi_squared_pdf()Ctx.chi_squared_cdf()Ctx.chi_squared_qtf()ctx.dist_chi_squareddist_chi_squared.pdf()dist_chi_squared.cdf()dist_chi_squared.sf()dist_chi_squared.qtf()dist_chi_squared.isf()dist_chi_squared.c_x()dist_chi_squared.m_x()dist_chi_squared.k_x()dist_chi_squared.moments()dist_chi_squared.cumulants()ctx.chi_squared_recurrence()ctx.chi_squared_gp()ctx.chi_squared_ecf()ctx.chi_squared_ecf_inv()ctx.chi_squared_spa()ctx.chi_squared_spa_inv()
- Boost: Gamma (Pearson Type III, Erlang) distribution
- Boost: Inverse chisquared distribution
Ctx.invchisquared_pdf()Ctx.invchisquared_cdf()Ctx.invchisquared_qtf()ctx.dist_invchisquareddist_invchisquared.pdf()dist_invchisquared.cdf()dist_invchisquared.sf()dist_invchisquared.qtf()dist_invchisquared.isf()dist_invchisquared.c_x()dist_invchisquared.m_x()dist_invchisquared.k_x()dist_invchisquared.moments()dist_invchisquared.cumulants()
- Boost: Inverse Gamma (Pearson Type V) distribution
- !!!Boost: Maxwell Distribution
- !!!Boost: Nakagami distribution
- Amoroso distribution
- Distribution of the logarithm of a \(\chi^2\) random variable
ctx.dist_logrv_chisquareddist_logrv_chisquared.pdf()dist_logrv_chisquared.cdf()dist_logrv_chisquared.sf()dist_logrv_chisquared.qtf()dist_logrv_chisquared.isf()dist_logrv_chisquared.c_x()dist_logrv_chisquared.m_x()dist_logrv_chisquared.k_x()dist_logrv_chisquared.moments()dist_logrv_chisquared.cumulants()ctx.logrv_chisquared_ecf()ctx.logrv_chisquared_ecf_inv()
- Hypoexponential (Generalized Erlang) Distribution
ctx.dist_hypoexponentialdist_hypoexponential.pdf()dist_hypoexponential.cdf()dist_hypoexponential.sf()dist_hypoexponential.qtf()dist_hypoexponential.isf()dist_hypoexponential.c_x()dist_hypoexponential.m_x()dist_hypoexponential.k_x()dist_hypoexponential.moments()dist_hypoexponential.cumulants()
- Lindley distribution (generalized)
- Skew exponential power distribution
- Stacy (generalized gamma) distribution
- Closed form distributions, based on the incomplete beta function
- Boost: Beta (Pearson Type I and II) distribution
- Boost: Central Fisher F distribution
Ctx.fisher_f_pdf()Ctx.fisher_f_cdf()Ctx.fisher_f_qtf()ctx.dist_fisher_fdist_fisher_f.pdf()dist_fisher_f.cdf()dist_fisher_f.sf()dist_fisher_f.qtf()dist_fisher_f.isf()dist_fisher_f.c_x()dist_fisher_f.m_x()dist_fisher_f.k_x()dist_fisher_f.moments()dist_fisher_f.cumulants()dist_fisher_f.recurrence_pdf()dist_fisher_f.recurrence_cdf()
- Boost: Student \(t\) (Pearson Type VII) distribution
- Distribution of the negative logarithm of a beta variable
- Beta-prime (Pearson Type VI) distribution
- Generalized Beta (Type 1) distribution
- Generalized Beta (Type 2) distribution
- Generalized logistic distribution (JKB Types I - IV)
- Generalized beta-exponential distribution
- Feller-Pareto distribution
- Fisher \(z\) distribution
ctx.dist_fisher_zdist_fisher_z.pdf()dist_fisher_z.cdf()dist_fisher_z.sf()dist_fisher_z.qtf()dist_fisher_z.isf()dist_fisher_z.c_x()dist_fisher_z.m_x()dist_fisher_z.k_x()dist_fisher_z.moments()dist_fisher_z.cumulants()ctx.fisher_z_ecf()ctx.fisher_z_ecf_inv()ctx.fisher_z_spa()ctx.fisher_z_spa_inv()
- Skew t-distribution (Jones)
- Pearson’s rho distribution (under \(H_0\))
- Noncentral distributions
- Boost: Noncentral \(\chi^2\) distribution
Ctx.chi_squared_nc_pdf()Ctx.chi_squared_nc_cdf()Ctx.chi_squared_nc_qtf()ctx.dist_chi_squared_ncdist_chi_squared_nc.pdf()dist_chi_squared_nc.cdf()dist_chi_squared_nc.sf()dist_chi_squared_nc.qtf()dist_chi_squared_nc.isf()dist_chi_squared_nc.c_x()dist_chi_squared_nc.m_x()dist_chi_squared_nc.k_x()dist_chi_squared_nc.moments()dist_chi_squared_nc.cumulants()ctx.chi_squared_nc_recurrence()ctx.chi_squared_nc_gp()ctx.chi_squared_nc_ecf()ctx.chi_squared_nc_ecf_inv()ctx.chi_squared_nc_spa()ctx.chi_squared_nc_spa_inv()
- Boost: Noncentral Student \(t\) distribution
Ctx.student_t_nc_pdf()Ctx.student_t_nc_cdf()Ctx.student_t_nc_qtf()ctx.dist_student_t_ncdist_student_t_nc.pdf()dist_student_t_nc.cdf()dist_student_t_nc.sf()dist_student_t_nc.qtf()dist_student_t_nc.isf()dist_student_t_nc.c_x()dist_student_t_nc.m_x()dist_student_t_nc.k_x()dist_student_t_nc.moments()dist_student_t_nc.cumulants()ctx.student_t_nc_ecf()ctx.student_t_nc_ecf_inv()
- Boost: Noncentral Fisher \(F\) distribution
Ctx.fisher_f_nc_pdf()Ctx.fisher_f_nc_cdf()Ctx.fisher_f_nc_qtf()ctx.dist_fisher_f_ncdist_fisher_f_nc.pdf()dist_fisher_f_nc.cdf()dist_fisher_f_nc.sf()dist_fisher_f_nc.qtf()dist_fisher_f_nc.isf()dist_fisher_f_nc.c_x()dist_fisher_f_nc.m_x()dist_fisher_f_nc.k_x()dist_fisher_f_nc.moments()dist_fisher_f_nc.cumulants()dist_fisher_f_nc.nc_ci()ctx.fisher_f_nc_pdf_recurrence()ctx.fisher_f_nc_cdf_recurrence()ctx.fisher_f_nc_ecf()ctx.fisher_f_nc_ecf_inv()
- Boost: Noncentral Beta Type I distribution
Ctx.beta_nc_pdf()Ctx.beta_nc_cdf()Ctx.beta_nc_qtf()ctx.dist_beta_nc_type_Idist_beta_nc_type_I.pdf()dist_beta_nc_type_I.cdf()dist_beta_nc_type_I.sf()dist_beta_nc_type_I.qtf()dist_beta_nc_type_I.isf()dist_beta_nc_type_I.c_x()dist_beta_nc_type_I.m_x()dist_beta_nc_type_I.k_x()dist_beta_nc_type_I.moments()dist_beta_nc_type_I.cumulants()
- Noncentral Chi distribution
- Rice (Nakagami-n) distribution
- Noncentral distribution of the sample correlation coefficient
- Distribution of the logarithm of a noncentral Beta Type II variable
ctx.dist_logrv_beta_nc_type_IIdist_logrv_beta_nc_type_II.pdf()dist_logrv_beta_nc_type_II.cdf()dist_logrv_beta_nc_type_II.sf()dist_logrv_beta_nc_type_II.qtf()dist_logrv_beta_nc_type_II.isf()dist_logrv_beta_nc_type_II.c_y()dist_logrv_beta_nc_type_II.m_y()dist_logrv_beta_nc_type_II.k_y()dist_logrv_beta_nc_type_II.moments()dist_logrv_beta_nc_type_II.cumulants()ctx.log1mbeta_nc_gp()ctx.beta_nc_spa()ctx.beta_nc_spa_inv()
- Noncentral distribution (Type I) of Fisher’s \(R^2\)
ctx.dist_fisher_r2_type_Idist_fisher_r2_type_I.pdf()dist_fisher_r2_type_I.cdf()dist_fisher_r2_type_I.sf()dist_fisher_r2_type_I.qtf()dist_fisher_r2_type_I.isf()dist_fisher_r2_type_I.c_x()dist_fisher_r2_type_I.m_x()dist_fisher_r2_type_I.k_x()dist_fisher_r2_type_I.moments()dist_fisher_r2_type_I.cumulants()
- Distribution of the logarithm of a noncentral Fisher \(1-R^2\) variable
ctx.dist_logrv_fisher_1mr2dist_logrv_fisher_1mr2.pdf()dist_logrv_fisher_1mr2.cdf()dist_logrv_fisher_1mr2.sf()dist_logrv_fisher_1mr2.qtf()dist_logrv_fisher_1mr2.isf()dist_logrv_fisher_1mr2.c_y()dist_logrv_fisher_1mr2.m_y()dist_logrv_fisher_1mr2.k_y()dist_logrv_fisher_1mr2.moments()dist_logrv_fisher_1mr2.cumulants()ctx.fisher_log1mr2_gp()ctx.fisher_r2_spa()ctx.fisher_r2_spa_inv()
- Doubly non-central Student \(t\) distribution
ctx.dist_student_t_2ncdist_student_t_2nc.pdf()dist_student_t_2nc.cdf()dist_student_t_2nc.sf()dist_student_t_2nc.qtf()dist_student_t_2nc.isf()dist_student_t_2nc.c_x()dist_student_t_2nc.m_x()dist_student_t_2nc.k_x()dist_student_t_2nc.moments()dist_student_t_2nc.cumulants()ctx.student_t_nc2_ecf()ctx.student_t_nc2_ecf_inv()
- Doubly non-central Fisher \(F\) distribution
ctx.dist_fisher_f_2ncdist_fisher_f_2nc.pdf()dist_fisher_f_2nc.cdf()dist_fisher_f_2nc.sf()dist_fisher_f_2nc.qtf()dist_fisher_f_2nc.isf()dist_fisher_f_2nc.c_x()dist_fisher_f_2nc.m_x()dist_fisher_f_2nc.k_x()dist_fisher_f_2nc.moments()dist_fisher_f_2nc.cumulants()dist_fisher_f_2nc.nc_ci()ctx.fisher_f_nc2_pdf_recurrence()ctx.fisher_f_nc2_cdf_recurrence()ctx.fisher_f_nc2_ecf()ctx.fisher_f_nc2_ecf_inv()ctx.fisher_f_nc2_spa()ctx.fisher_f_nc2_spa_inv()
- Boost: Noncentral \(\chi^2\) distribution
- Distributions related to multiple comparisons of means
- Overview and literature
- Normal maximum distribution, \(\rho_{ij, i \ne j} = \rho\)
- Normal maximum modulus distribution, \(\rho_{ij, i \ne j} = \rho\)
- Normal maximum distribution, \(\rho_{ij, i \ne j} = \lambda_i \lambda_j\)
- Normal maximum modulus distribution, \(\rho_{ij, i \ne j} = \lambda_i \lambda_j\)
- Normal range distribution
- Studentized maximum distribution
- Studentized maximum modulus distribution
- Distribution of Dunnett’s \(t\), one-sided
- Distribution of Dunnett’s \(t\), two-sided
- Nair’s \(t\)-distribution
- Halperin’s \(t\)-distribution
- Nelson’s \(h\)-distribution
- Studentized range distribution
ctx.dist_studentized_rangedist_studentized_range.pdf()dist_studentized_range.cdf()dist_studentized_range.sf()dist_studentized_range.qtf()dist_studentized_range.isf()dist_studentized_range.c_x()dist_studentized_range.m_x()dist_studentized_range.k_x()dist_studentized_range.moments()dist_studentized_range.cumulants()
- Distributions related to multivariate statistical analysis
- Distribution of the sum of the negative logarithms of independent beta variables
ctx.dist_logrv_beta_sumdist_logrv_beta_sum.pdf()dist_logrv_beta_sum.cdf()dist_logrv_beta_sum.sf()dist_logrv_beta_sum.qtf()dist_logrv_beta_sum.isf()dist_logrv_beta_sum.c_x()dist_logrv_beta_sum.m_x()dist_logrv_beta_sum.k_x()dist_logrv_beta_sum.moments()dist_logrv_beta_sum.cumulants()ctx.beta_product_ecf()ctx.beta_product_ecf_inv()
- Distribution of the product of independent beta variables
ctx.dist_beta_productdist_beta_product.pdf()dist_beta_product.cdf()dist_beta_product.sf()dist_beta_product.qtf()dist_beta_product.isf()dist_beta_product.c_x()dist_beta_product.m_x()dist_beta_product.k_x()dist_beta_product.moments()dist_beta_product.cumulants()ctx.log_beta_prod_gp()ctx.beta_prod_spa()ctx.beta_prod_spa_inv()ctx.beta_product_bd()ctx.beta_product_bd_inv()ctx.beta_product_bd_cdf_old()
- Distribution of Wilks’ \(\Lambda\)
ctx.dist_wilks_lambdadist_wilks_lambda.pdf()dist_wilks_lambda.cdf()dist_wilks_lambda.sf()dist_wilks_lambda.qtf()dist_wilks_lambda.isf()dist_wilks_lambda.c_x()dist_wilks_lambda.m_x()dist_wilks_lambda.k_x()dist_wilks_lambda.moments()dist_wilks_lambda.cumulants()ctx.wilks_lambda_gp()ctx.wilks_lambda_ecf()ctx.wilks_lambda_ecf_inv()ctx.wilks_lambda_spa()ctx.wilks_lambda_spa_inv()ctx.wilks_lambda_bd()
- Distribution of Wilks’ \(L_{vc}\)
- Distribution of Wilks’ \(L_{vcm}\)
- Distribution of Wilks’ test of independence of \(p\) variates
- Distribution of Wilks’ test of independence of \(k\) groups of variates
ctx.dist_wilks_iblocksdist_wilks_iblocks.pdf()dist_wilks_iblocks.cdf()dist_wilks_iblocks.sf()dist_wilks_iblocks.qtf()dist_wilks_iblocks.isf()dist_wilks_iblocks.c_x()dist_wilks_iblocks.m_x()dist_wilks_iblocks.k_x()dist_wilks_iblocks.moments()dist_wilks_iblocks.cumulants()ctx.wilks_iblocks_bd()ctx.wilks_iblocks_bd_inv()
- Distribution of Mauchly’s test of sphericity vs general structure
- Distribution of Box’s test of equality of covariance matrices, equal sample sizes
ctx.dist_box_nsame_covdist_box_nsame_cov.pdf()dist_box_nsame_cov.cdf()dist_box_nsame_cov.sf()dist_box_nsame_cov.qtf()dist_box_nsame_cov.isf()dist_box_nsame_cov.c_x()dist_box_nsame_cov.m_x()dist_box_nsame_cov.k_x()dist_box_nsame_cov.moments()dist_box_nsame_cov.cumulants()ctx.box_spa()ctx.box_spa_inv()
- Distribution of Box’s test of equality of k covariance matrices, unequal sample sizes
ctx.dist_box_covdist_box_cov.pdf()dist_box_cov.cdf()dist_box_cov.sf()dist_box_cov.qtf()dist_box_cov.isf()dist_box_cov.c_x()dist_box_cov.m_x()dist_box_cov.k_x()dist_box_cov.moments()dist_box_cov.cumulants()ctx.log_box_cov_gp()ctx.box_davis_ecf()ctx.box_davis_ecf_inv()ctx.box_cov_bd()ctx.box_cov_bd_inv()
- Distribution of Box’s test for same multivariate normal distributions, unequal sample sizes
- Distribution of the modified likelihood ratio test (LRT) for a given covariance matrix
- Distribution of the modified likelihood ratio test (LRT) for a given covariance matrix and mean vector
- Central distribution of Roy’s largest root
- Central distribution of Pillai’s \(V\)
ctx.dist_pillai_vdist_pillai_v.pdf()dist_pillai_v.cdf()dist_pillai_v.sf()dist_pillai_v.qtf()dist_pillai_v.isf()dist_pillai_v.c_x()dist_pillai_v.m_x()dist_pillai_v.k_x()dist_pillai_v.moments()dist_pillai_v.cumulants()ctx.pillai_v_ecf()ctx.pillai_v_ecf_inv()ctx.pillai_v_bd()ctx.pillai_v_bd_inv()
- Central distribution of Hotelling’s \(T^2\)
ctx.dist_hotelling_t2dist_hotelling_t2.pdf()dist_hotelling_t2.cdf()dist_hotelling_t2.sf()dist_hotelling_t2.qtf()dist_hotelling_t2.isf()dist_hotelling_t2.c_x()dist_hotelling_t2.m_x()dist_hotelling_t2.k_x()dist_hotelling_t2.moments()dist_hotelling_t2.cumulants()ctx.hotelling_t2_ecf()ctx.hotelling_t2_ecf_inv()ctx.hotelling_t2_bd()ctx.hotelling_t2_bd_inv()
- Noncentral Distribution of Wilks’ \(\Lambda\): MANOVA
ctx.dist_wilks_lambda_glmdist_wilks_lambda_glm.pdf()dist_wilks_lambda_glm.cdf()dist_wilks_lambda_glm.sf()dist_wilks_lambda_glm.qtf()dist_wilks_lambda_glm.isf()dist_wilks_lambda_glm.c_x()dist_wilks_lambda_glm.m_x()dist_wilks_lambda_glm.k_x()dist_wilks_lambda_glm.moments()dist_wilks_lambda_glm.cumulants()ctx.wilks_lambda_glm_gp()ctx.wilks_lambda_glm_spa()ctx.wilks_lambda_glm_inv()
- Noncentral Distribution of Wilks’ \(\Lambda\): Canonical Correlation
ctx.dist_wilks_lambda_corrdist_wilks_lambda_corr.pdf()dist_wilks_lambda_corr.cdf()dist_wilks_lambda_corr.sf()dist_wilks_lambda_corr.qtf()dist_wilks_lambda_corr.isf()dist_wilks_lambda_corr.c_x()dist_wilks_lambda_corr.m_x()dist_wilks_lambda_corr.k_x()dist_wilks_lambda_corr.moments()dist_wilks_lambda_corr.cumulants()ctx.wilks_lambda_ind_gp()ctx.wilks_lambda_ind_spa()ctx.wilks_lambda_ind_spa_inv()
- Distribution of the sum of the negative logarithms of independent beta variables
- Miscellaneous continuous distributions
- Boost: Kolmogorov-Smirnov distribution (limiting form)
Ctx.kolmogorov_smirnov_pdf()Ctx.kolmogorov_smirnov_cdf()Ctx.kolmogorov_smirnov_qtf()CtxBoost.dist_kolmogorov_smirnov()dist_kolmogorov_smirnov.pdf()dist_kolmogorov_smirnov.cdf()dist_kolmogorov_smirnov.qtf()dist_kolmogorov_smirnov.sf()dist_kolmogorov_smirnov.isf()dist_kolmogorov_smirnov.hf()dist_kolmogorov_smirnov.chf()dist_kolmogorov_smirnov.mode()dist_kolmogorov_smirnov.median()dist_kolmogorov_smirnov.mean()dist_kolmogorov_smirnov.variance()dist_kolmogorov_smirnov.stdev()dist_kolmogorov_smirnov.skewness()dist_kolmogorov_smirnov.kurtosis()dist_kolmogorov_smirnov.kurtosis_excess()dist_kolmogorov_smirnov.support_lower_endpoint()dist_kolmogorov_smirnov.support_upper_endpoint()dist_kolmogorov_smirnov.range_lower_endpoint()dist_kolmogorov_smirnov.range_upper_endpoint()
- Boost: Landau Distribution
- Boost: Holtsmark distribution
Ctx.holtsmark_pdf()Ctx.holtsmark_cdf()Ctx.holtsmark_qtf()CtxBoost.dist_holtsmark()dist_holtsmark.pdf()dist_holtsmark.cdf()dist_holtsmark.qtf()dist_holtsmark.sf()dist_holtsmark.isf()dist_holtsmark.hf()dist_holtsmark.chf()dist_holtsmark.mode()dist_holtsmark.median()dist_holtsmark.mean()dist_holtsmark.variance()dist_holtsmark.stdev()dist_holtsmark.skewness()dist_holtsmark.kurtosis()dist_holtsmark.kurtosis_excess()dist_holtsmark.support_lower_endpoint()dist_holtsmark.support_upper_endpoint()dist_holtsmark.range_lower_endpoint()dist_holtsmark.range_upper_endpoint()
- Boost: Map-Airy distribution
Ctx.mapairy_pdf()Ctx.mapairy_cdf()Ctx.mapairy_qtf()CtxBoost.dist_mapairy()dist_mapairy.pdf()dist_mapairy.cdf()dist_mapairy.qtf()dist_mapairy.sf()dist_mapairy.isf()dist_mapairy.hf()dist_mapairy.chf()dist_mapairy.mode()dist_mapairy.median()dist_mapairy.mean()dist_mapairy.variance()dist_mapairy.stdev()dist_mapairy.skewness()dist_mapairy.kurtosis()dist_mapairy.kurtosis_excess()dist_mapairy.support_lower_endpoint()dist_mapairy.support_upper_endpoint()dist_mapairy.range_lower_endpoint()dist_mapairy.range_upper_endpoint()
- Boost: Saspoint5 distribution
Ctx.saspoint5_pdf()Ctx.saspoint5_cdf()Ctx.saspoint5_qtf()CtxBoost.dist_saspoint5()dist_saspoint5.pdf()dist_saspoint5.cdf()dist_saspoint5.qtf()dist_saspoint5.sf()dist_saspoint5.isf()dist_saspoint5.hf()dist_saspoint5.chf()dist_saspoint5.mode()dist_saspoint5.median()dist_saspoint5.mean()dist_saspoint5.variance()dist_saspoint5.stdev()dist_saspoint5.skewness()dist_saspoint5.kurtosis()dist_saspoint5.kurtosis_excess()dist_saspoint5.support_lower_endpoint()dist_saspoint5.support_upper_endpoint()dist_saspoint5.range_lower_endpoint()dist_saspoint5.range_upper_endpoint()
- Lévy alpha-stable distribution
ctx.dist_levy_alpha_stabledist_levy_alpha_stable.pdf()dist_levy_alpha_stable.cdf()dist_levy_alpha_stable.sf()dist_levy_alpha_stable.qtf()dist_levy_alpha_stable.isf()dist_levy_alpha_stable.c_x()dist_levy_alpha_stable.m_x()dist_levy_alpha_stable.k_x()dist_levy_alpha_stable.moments()dist_levy_alpha_stable.cumulants()
- Pearson Type IV distribution
ctx.dist_pearson_type_IVdist_pearson_type_IV.pdf()dist_pearson_type_IV.cdf()dist_pearson_type_IV.sf()dist_pearson_type_IV.qtf()dist_pearson_type_IV.isf()dist_pearson_type_IV.c_x()dist_pearson_type_IV.m_x()dist_pearson_type_IV.k_x()dist_pearson_type_IV.moments()dist_pearson_type_IV.cumulants()
- Meixner distribution
- Voigt Profile Distribution
- Wrapped Cauchy distribution
- Wrapped normal distribution
- Von Mises distribution
- Generalized inverse Gaussian distribution
ctx.dist_gen_inv_gaussiandist_gen_inv_gaussian.pdf()dist_gen_inv_gaussian.cdf()dist_gen_inv_gaussian.sf()dist_gen_inv_gaussian.qtf()dist_gen_inv_gaussian.isf()dist_gen_inv_gaussian.c_x()dist_gen_inv_gaussian.m_x()dist_gen_inv_gaussian.k_x()dist_gen_inv_gaussian.moments()dist_gen_inv_gaussian.cumulants()
- Harmonic distribution
- Halphen A distribution
- Halphen B distribution
- Halphen IB distribution
- Generalized hyperbolic distribution
- Hyperbolic distribution
- Variance-gamma distribution
- Boost: Kolmogorov-Smirnov distribution (limiting form)
- Elementary discrete (lattice) distributions
- Boost: Bernoulli distribution
Ctx.bernoulli_pmf()Ctx.bernoulli_cdf()Ctx.bernoulli_qtf()CtxBoost.dist_bernoulli()dist_bernoulli.pmf()dist_bernoulli.cdf()dist_bernoulli.qtf()dist_bernoulli.sf()dist_bernoulli.isf()dist_bernoulli.hf()dist_bernoulli.chf()dist_bernoulli.mode()dist_bernoulli.median()dist_bernoulli.mean()dist_bernoulli.variance()dist_bernoulli.stdev()dist_bernoulli.skewness()dist_bernoulli.kurtosis()dist_bernoulli.kurtosis_excess()dist_bernoulli.support_lower_endpoint()dist_bernoulli.support_upper_endpoint()dist_bernoulli.range_lower_endpoint()dist_bernoulli.range_upper_endpoint()
- Boost: Geometric distribution
- Boost: Poisson distribution
Ctx.poisson_pmf()Ctx.poisson_cdf()Ctx.poisson_qtf()ctx.dist_poissondist_poisson.pmf()dist_poisson.cdf()dist_poisson.sf()dist_poisson.qtf()dist_poisson.isf()dist_poisson.g_x()dist_poisson.c_x()dist_poisson.m_x()dist_poisson.k_x()dist_poisson.moments()dist_poisson.cumulants()ctx.poisson_ecf()ctx.poisson_ecf_inv()ctx.poisson_spa()ctx.poisson_spa_inv()
- Boost: Binomial distribution
Ctx.binomial_pmf()Ctx.binomial_cdf()Ctx.binomial_qtf()ctx.dist_binomialdist_binomial.pmf()dist_binomial.cdf()dist_binomial.sf()dist_binomial.qtf()dist_binomial.isf()dist_binomial.g_x()dist_binomial.c_x()dist_binomial.m_x()dist_binomial.k_x()dist_binomial.moments()dist_binomial.cumulants()ctx.hypergeo_ft()ctx.binomial_ft()ctx.binomial_ecf()ctx.binomial_ecf_inv()ctx.binomial_spa()ctx.binomial_spa_inv()
- Boost: Negative binomial distribution
Ctx.negbinomial_pmf()Ctx.negbinomial_cdf()Ctx.negbinomial_qtf()ctx.dist_negbinomdist_negbinom.pmf()dist_negbinom.cdf()dist_negbinom.sf()dist_negbinom.qtf()dist_negbinom.isf()dist_negbinom.g_x()dist_negbinom.c_x()dist_negbinom.m_x()dist_negbinom.k_x()dist_negbinom.moments()dist_negbinom.cumulants()ctx.negbinom_ecf()ctx.negbinom_ecf_inv()ctx.negbinom_spa()ctx.negbinom_spa_inv()
- Boost: Classical hypergeometric distribution
Ctx.hypergeometric_pmf()Ctx.hypergeometric_cdf()Ctx.hypergeometric_qtf()ctx.dist_hypergeometricdist_hypergeometric.pmf()dist_hypergeometric.cdf()dist_hypergeometric.sf()dist_hypergeometric.qtf()dist_hypergeometric.isf()dist_hypergeometric.g_x()dist_hypergeometric.c_x()dist_hypergeometric.m_x()dist_hypergeometric.k_x()dist_hypergeometric.moments()dist_hypergeometric.cumulants()ctx.hypergeo_ecf()ctx.hypergeo_ecf_inv()ctx.hypergeo_spa()ctx.hypergeo_spa_inv()
- Log-series distribution
- Zeta distribution
- Skellam distribution
- Delaporte distribution
- Beta-Poisson distribution (Quinkert)
- Beta-binomial distribution
- Beta-negative binomial distribution (Waring)
ctx.dist_beta_negbinomialdist_beta_negbinomial.pmf()dist_beta_negbinomial.cdf()dist_beta_negbinomial.sf()dist_beta_negbinomial.qtf()dist_beta_negbinomial.isf()dist_beta_negbinomial.g_x()dist_beta_negbinomial.c_x()dist_beta_negbinomial.m_x()dist_beta_negbinomial.k_x()dist_beta_negbinomial.moments()dist_beta_negbinomial.cumulants()
- Negative hypergeometric distribution
- Pólya-Eggenberger distribution
- General hypergeometric distribution
- Noncentral hypergeometric distribution, Fisher alternatives
ctx.dist_hypergeo_nc_fisherdist_hypergeo_nc_fisher.pmf()dist_hypergeo_nc_fisher.cdf()dist_hypergeo_nc_fisher.sf()dist_hypergeo_nc_fisher.qtf()dist_hypergeo_nc_fisher.isf()dist_hypergeo_nc_fisher.g_x()dist_hypergeo_nc_fisher.c_x()dist_hypergeo_nc_fisher.m_x()dist_hypergeo_nc_fisher.k_x()dist_hypergeo_nc_fisher.moments()dist_hypergeo_nc_fisher.cumulants()
- Boost: Bernoulli distribution
- Discrete (lattice) distributions related to (stratified) rank tests
- Wilcoxon signed rank T distribution, continuous data
ctx.dist_wilcoxondist_wilcoxon.pmf()dist_wilcoxon.cdf()dist_wilcoxon.sf()dist_wilcoxon.qtf()dist_wilcoxon.isf()dist_wilcoxon.g_x()dist_wilcoxon.c_x()dist_wilcoxon.m_x()dist_wilcoxon.k_x()dist_wilcoxon.moments()dist_wilcoxon.cumulants()ctx.wilcoxon_ft()ctx.wilcoxon_ecf()ctx.wilcoxon_ecf_inv()ctx.wilcoxon_spa()ctx.wilcoxon_spa_inv()
- Noncentral Wilcoxon signed rank T distribution, Bennett alternatives
- Mann-Whitney U distribution, continuous data
ctx.dist_mann_whitney_udist_mann_whitney_u.pmf()dist_mann_whitney_u.cdf()dist_mann_whitney_u.sf()dist_mann_whitney_u.qtf()dist_mann_whitney_u.isf()dist_mann_whitney_u.g_x()dist_mann_whitney_u.c_x()dist_mann_whitney_u.m_x()dist_mann_whitney_u.k_x()dist_mann_whitney_u.moments()dist_mann_whitney_u.cumulants()ctx.mannwhitney_ft()ctx.mannwhitney_ecf()ctx.mannwhitney_ecf_inv()ctx.mannwhitney_spa()ctx.mannwhitney_spa_inv()
- Noncentral Mann-Whitney U distribution, Lehmann alternatives
ctx.dist_mann_whitney_u_lehmanndist_mann_whitney_u_lehmann.pmf()dist_mann_whitney_u_lehmann.cdf()dist_mann_whitney_u_lehmann.sf()dist_mann_whitney_u_lehmann.qtf()dist_mann_whitney_u_lehmann.isf()dist_mann_whitney_u_normal.g_x()dist_mann_whitney_u_lehmann.c_x()dist_mann_whitney_u_lehmann.m_x()dist_mann_whitney_u_lehmann.k_x()dist_mann_whitney_u_lehmann.moments()dist_mann_whitney_u_lehmann.cumulants()
- Noncentral Mann-Whitney U distribution, Milton alternatives
ctx.dist_mann_whitney_u_miltondist_mann_whitney_u_milton.pmf()dist_mann_whitney_u_milton.cdf()dist_mann_whitney_u_milton.sf()dist_mann_whitney_u_milton.qtf()dist_mann_whitney_u_milton.isf()dist_mann_whitney_u_milton.g_x()dist_mann_whitney_u_milton.c_x()dist_mann_whitney_u_milton.m_x()dist_mann_whitney_u_milton.k_x()dist_mann_whitney_u_milton.moments()dist_mann_whitney_u_milton.cumulants()
- Kendall’s tau distribution, continuous data
ctx.dist_kendall_taudist_kendall_tau.pmf()dist_kendall_tau.cdf()dist_kendall_tau.sf()dist_kendall_tau.qtf()dist_kendall_tau.isf()dist_kendall_tau.g_x()dist_kendall_tau.c_x()dist_kendall_tau.m_x()dist_kendall_tau.k_x()dist_kendall_tau.moments()dist_kendall_tau.cumulants()ctx.kendall_ft()ctx.kendall_tau_ecf()ctx.kendall_tau_ecf_inv()ctx.kendall_tau_spa()ctx.kendall_tau_spa_inv()
- Jonckheere-Terpsta \(T\) distribution, continuous data
ctx.dist_jterpsta_sdist_jterpsta_s.pmf()dist_jterpsta_s.cdf()dist_jterpsta_s.sf()dist_jterpsta_s.qtf()dist_jterpsta_s.isf()dist_jterpsta_s.g_x()dist_jterpsta_s.c_x()dist_jterpsta_s.m_x()dist_jterpsta_s.k_x()dist_jterpsta_s.moments()dist_jterpsta_s.cumulants()ctx.jterpsta_ft()ctx.jterpsta_ecf()ctx.jterpsta_ecf_inv()ctx.jterpsta_spa()ctx.jterpsta_spa_inv()
- Generalized Page \(L\) distribution, continuous data
- Noncentral generalized Page \(L\) distribution, Milton alternatives
ctx.dist_page_l_nc_miltondist_page_l_nc_milton.pmf()dist_page_l_nc_milton.cdf()dist_page_l_nc_milton.sf()dist_page_l_nc_milton.qtf()dist_page_l_nc_milton.isf()dist_page_l_nc_milton.c_x()dist_page_l_nc_milton.m_x()dist_page_l_nc_milton.k_x()dist_page_l_nc_milton.moments()dist_page_l_nc_milton.cumulants()
- Wilcoxon signed rank T distribution, continuous data
- Discrete (non-lattice) distributions related to rank tests