Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « statistics » Python 3.11.3

Classe « NormalDist »

Informations générales

Héritage

builtins.object
    NormalDist

Définition

class NormalDist(builtins.object):

help(NormalDist)

Normal distribution of a random variable

Constructeur(s)

Signature du constructeur Description
__init__(self, mu=0.0, sigma=1.0) NormalDist where mu is the mean and sigma is the standard deviation. [extrait de __init__.__doc__]

Liste des propriétés

Nom de la propriétéDescription
meanArithmetic mean of the normal distribution. [extrait de __doc__]
medianReturn the median of the normal distribution [extrait de __doc__]
modeReturn the mode of the normal distribution [extrait de __doc__]
stdevStandard deviation of the normal distribution. [extrait de __doc__]
varianceSquare of the standard deviation. [extrait de __doc__]

Liste des opérateurs

Signature de l'opérateur Description
__add__(x1, x2) Add a constant or another NormalDist instance. [extrait de __add__.__doc__]
__eq__(x1, x2) Two NormalDist objects are equal if their mu and sigma are both equal. [extrait de __eq__.__doc__]
__mul__(x1, x2) Multiply both mu and sigma by a constant. [extrait de __mul__.__doc__]
__neg__(x1) Negates mu while keeping sigma the same. [extrait de __neg__.__doc__]
__pos__(x1) Return a copy of the instance. [extrait de __pos__.__doc__]
__radd__(x1, x2) Add a constant or another NormalDist instance. [extrait de __add__.__doc__]
__rmul__(x1, x2) Multiply both mu and sigma by a constant. [extrait de __mul__.__doc__]
__rsub__(x1, x2) Subtract a NormalDist from a constant or another NormalDist. [extrait de __rsub__.__doc__]
__sub__(x1, x2) Subtract a constant or another NormalDist instance. [extrait de __sub__.__doc__]
__truediv__(x1, x2) Divide both mu and sigma by a constant. [extrait de __truediv__.__doc__]

Opérateurs hérités de la classe object

__ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__getstate__(self)
__hash__(self) NormalDist objects hash equal if their mu and sigma are both equal. [extrait de __hash__.__doc__]
__repr__(self)
__setstate__(self, state)
cdf(self, x) Cumulative distribution function. P(X <= x) [extrait de cdf.__doc__]
from_samples(data) Make a normal distribution instance from sample data. [extrait de from_samples.__doc__]
inv_cdf(self, p) Inverse cumulative distribution function. x : P(X <= x) = p [extrait de inv_cdf.__doc__]
overlap(self, other) Compute the overlapping coefficient (OVL) between two normal distributions. [extrait de overlap.__doc__]
pdf(self, x) Probability density function. P(x <= X < x+dx) / dx [extrait de pdf.__doc__]
quantiles(self, n=4) Divide into *n* continuous intervals with equal probability. [extrait de quantiles.__doc__]
samples(self, n, *, seed=None) Generate *n* samples for a given mean and standard deviation. [extrait de samples.__doc__]
zscore(self, x) Compute the Standard Score. (x - mean) / stdev [extrait de zscore.__doc__]

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __init_subclass__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__