{ } Raw JSON

bundles / scipy 1.17.1 / scipy / stats / _continuous_distns / skewnorm_gen

class

scipy.stats._continuous_distns:skewnorm_gen

source: /scipy/stats/_continuous_distns.py :9681

Signature

class   skewnorm_gen ( momtype = 1 a = None b = None xtol = 1e-14 badvalue = None name = None longname = None shapes = None seed = None )

Members

Summary

A skew-normal random variable.

Extended Summary

%(before_notes)s

Notes

The pdf is

skewnorm.pdf(x, a) = 2 * norm.pdf(x) * norm.cdf(a*x)

skewnorm takes a real number as a skewness parameter When a = 0 the distribution is identical to a normal distribution (norm). rvs implements the method of [1].

This distribution uses routines from the Boost Math C++ library for the computation of cdf, ppf and isf methods. [2]

%(after_notes)s

Aliases

  • scipy.stats._continuous_distns.skewnorm_gen