uawdijnntqw1x1x1
IP : 3.145.69.185
Hostname : host45.registrar-servers.com
Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
jackpotjunglegam
/
..
/
..
/
lib64
/
python3.8
/
xmlrpc
/
..
/
.
/
__pycache__
/
statistics.cpython-38.pyc
/
/
U e5d ��@s�dZddddddddd d ddd ddddgZddlZddlZddlZddlmZddlmZddl m Z ddlmZm Z ddlmZmZmZmZmZmZmZmZddlmZddlmZGdd�de�Zdedd�Zdd�Zd d!�Zd"d#�Zd$d%�Z d&d'�Z!d(d)�Z"dfd+d,�Z#d-d�Z$d.d�Z%d/d�Z&d0d�Z'd1d�Z(d2d �Z)d3d �Z*dgd5d�Z+d6d�Z,d7d�Z-d8d9d:�d;d�Z.dhd<d=�Z/did>d�Z0djd?d�Z1dkd@d�Z2dldAd �Z3dBdC�Z4GdDd�d�Z5zddEl6m4Z4Wne7k �r�YnXe8dFk�r�ddGlm9Z9ddHlm:Z:m;Z;m<Z<m=Z=ddIl m>Z>ddl?Z?e5dJdK�Z@e5dLdM�ZAe@dNdNj$e@j$k�sLtB�e@dNdNj2e@j2k�sftB�dOZCe@�DeC�ZEeA�DeC�ZFe:e;fD]<ZGeHdPeGj8�dQ��eHeGe@eA��eHe5�IeJeGeEeF����q�dRZKe:e;e<e=fD]@ZGeHdPeGj8�dS��eHeGe@eK��eHe5�IeJeGeEe>eK�����q�dTZKe:e;e<fD]@ZGeHdUeGj8�dV��eHeGeKe@��eHe5�IeJeGe>eK�eE����q$dWdX�ZLe5dYdZ�ZMe5d[d\�ZNd]ZOdOZCe5�Id^d_�eM�DeC�D��ZPeLeMeOeP�e5�Id`d_�eM�DeC�D��ZPeLeMeOeP�e5�Idad_�eM�DeC�D��ZPeLeMeOeP�e5�Idbd_�eM�DeC�D��ZPeLeMeOeP�e5�Idcd_�eQeM�DeC�eN�DeC��D��ZPeLeMeNeP�e5�Iddd_�eQeM�DeC�eN�DeC��D��ZPeLeMeNeP�eHe?�R��dS)mam Basic statistics module. This module provides functions for calculating statistics of data, including averages, variance, and standard deviation. Calculating averages -------------------- ================== ================================================== Function Description ================== ================================================== mean Arithmetic mean (average) of data. fmean Fast, floating point arithmetic mean. geometric_mean Geometric mean of data. harmonic_mean Harmonic mean of data. median Median (middle value) of data. median_low Low median of data. median_high High median of data. median_grouped Median, or 50th percentile, of grouped data. mode Mode (most common value) of data. multimode List of modes (most common values of data). quantiles Divide data into intervals with equal probability. ================== ================================================== Calculate the arithmetic mean ("the average") of data: >>> mean([-1.0, 2.5, 3.25, 5.75]) 2.625 Calculate the standard median of discrete data: >>> median([2, 3, 4, 5]) 3.5 Calculate the median, or 50th percentile, of data grouped into class intervals centred on the data values provided. E.g. if your data points are rounded to the nearest whole number: >>> median_grouped([2, 2, 3, 3, 3, 4]) #doctest: +ELLIPSIS 2.8333333333... This should be interpreted in this way: you have two data points in the class interval 1.5-2.5, three data points in the class interval 2.5-3.5, and one in the class interval 3.5-4.5. The median of these data points is 2.8333... Calculating variability or spread --------------------------------- ================== ============================================= Function Description ================== ============================================= pvariance Population variance of data. variance Sample variance of data. pstdev Population standard deviation of data. stdev Sample standard deviation of data. ================== ============================================= Calculate the standard deviation of sample data: >>> stdev([2.5, 3.25, 5.5, 11.25, 11.75]) #doctest: +ELLIPSIS 4.38961843444... If you have previously calculated the mean, you can pass it as the optional second argument to the four "spread" functions to avoid recalculating it: >>> data = [1, 2, 2, 4, 4, 4, 5, 6] >>> mu = mean(data) >>> pvariance(data, mu) 2.5 Exceptions ---------- A single exception is defined: StatisticsError is a subclass of ValueError. � NormalDist�StatisticsError�fmean�geometric_mean� harmonic_mean�mean�median�median_grouped�median_high� median_low�mode� multimode�pstdev� pvariance� quantiles�stdev�variance�N��Fraction)�Decimal)�groupby)�bisect_left�bisect_right)�hypot�sqrt�fabs�exp�erf�tau�log�fsum)� itemgetter)�Counterc@seZdZdS)rN)�__name__� __module__�__qualname__�r&r&�"/usr/lib64/python3.8/statistics.pyruscCs�d}t|�\}}||i}|j}ttt|��}t|t�D]@\}} t||�}tt| �D]"\}}|d7}||d�|||<qRq6d|kr�|d} t| �r�t�nt dd�t |���D��} || |fS)aC_sum(data [, start]) -> (type, sum, count) Return a high-precision sum of the given numeric data as a fraction, together with the type to be converted to and the count of items. If optional argument ``start`` is given, it is added to the total. If ``data`` is empty, ``start`` (defaulting to 0) is returned. Examples -------- >>> _sum([3, 2.25, 4.5, -0.5, 1.0], 0.75) (<class 'float'>, Fraction(11, 1), 5) Some sources of round-off error will be avoided: # Built-in sum returns zero. >>> _sum([1e50, 1, -1e50] * 1000) (<class 'float'>, Fraction(1000, 1), 3000) Fractions and Decimals are also supported: >>> from fractions import Fraction as F >>> _sum([F(2, 3), F(7, 5), F(1, 4), F(5, 6)]) (<class 'fractions.Fraction'>, Fraction(63, 20), 4) >>> from decimal import Decimal as D >>> data = [D("0.1375"), D("0.2108"), D("0.3061"), D("0.0419")] >>> _sum(data) (<class 'decimal.Decimal'>, Fraction(6963, 10000), 4) Mixed types are currently treated as an error, except that int is allowed. r�Ncss|]\}}t||�VqdS�Nr)�.0�d�nr&r&r'� <genexpr>�sz_sum.<locals>.<genexpr>)�_exact_ratio�get�_coerce�int�typer�map� _isfinite�AssertionError�sum�sorted�items)�data�start�countr,r+ZpartialsZpartials_get�T�typ�values�totalr&r&r'�_sum{s$ r@cCs.z |��WStk r(t�|�YSXdSr))Z is_finite�AttributeError�mathZisfinite)�xr&r&r'r4�s r4cCs�|tk std��||kr|S|tks,|tkr0|S|tkr<|St||�rJ|St||�rX|St|t�rf|St|t�rt|St|t�r�t|t�r�|St|t�r�t|t�r�|Sd}t||j|jf��dS)z�Coerce types T and S to a common type, or raise TypeError. Coercion rules are currently an implementation detail. See the CoerceTest test class in test_statistics for details. zinitial type T is boolz"don't know how to coerce %s and %sN)�boolr5r1� issubclassr�float� TypeErrorr#)r<�S�msgr&r&r'r0�s* r0cCs�zrt|�tkst|�tkr$|��WSz|j|jfWWStk rnz|��WYWStk rhYnXYnXWn,ttfk r�t |�r�t �|dfYSXd}t|�t|�j ���dS)z�Return Real number x to exact (numerator, denominator) pair. >>> _exact_ratio(0.25) (1, 4) x is expected to be an int, Fraction, Decimal or float. Nz0can't convert type '{}' to numerator/denominator)r2rFr�as_integer_ratio� numerator�denominatorrA� OverflowError� ValueErrorr4r5rG�formatr#)rCrIr&r&r'r.�s r.cCspt|�|kr|St|t�r(|jdkr(t}z ||�WStk rjt|t�rd||j�||j�YS�YnXdS)z&Convert value to given numeric type T.r(N)r2rEr1rLrFrGrrK)�valuer<r&r&r'�_convert�s rQcCs.t||�}|t|�kr&|||kr&|St�dS)z,Locate the leftmost value exactly equal to xN)r�lenrN)�arC�ir&r&r'� _find_lteq s rUcCs>t|||d�}|t|�dkr6||d|kr6|dSt�dS)z-Locate the rightmost value exactly equal to x)�lor(N)rrRrN)rS�lrCrTr&r&r'� _find_rteqs rX�negative valueccs$|D]}|dkrt|��|VqdS)z7Iterate over values, failing if any are less than zero.rN)r)r>�errmsgrCr&r&r'� _fail_negsr[cCsTt|�|krt|�}t|�}|dkr,td��t|�\}}}||ksFt�t|||�S)a�Return the sample arithmetic mean of data. >>> mean([1, 2, 3, 4, 4]) 2.8 >>> from fractions import Fraction as F >>> mean([F(3, 7), F(1, 21), F(5, 3), F(1, 3)]) Fraction(13, 21) >>> from decimal import Decimal as D >>> mean([D("0.5"), D("0.75"), D("0.625"), D("0.375")]) Decimal('0.5625') If ``data`` is empty, StatisticsError will be raised. r(z%mean requires at least one data point)�iter�listrRrr@r5rQ)r9r,r<r?r;r&r&r'r'scstzt|��Wn0tk r<d��fdd�}t||��}Yn Xt|�}z |�WStk rntd�d�YnXdS)z�Convert data to floats and compute the arithmetic mean. This runs faster than the mean() function and it always returns a float. If the input dataset is empty, it raises a StatisticsError. >>> fmean([3.5, 4.0, 5.25]) 4.25 rc3s t|dd�D]\�}|VqdS)Nr()r:)� enumerate)�iterablerC�r,r&r'r;Oszfmean.<locals>.countz&fmean requires at least one data pointN)rRrGr �ZeroDivisionErrorr)r9r;r?r&r`r'rAs cCs8ztttt|���WStk r2td�d�YnXdS)aYConvert data to floats and compute the geometric mean. Raises a StatisticsError if the input dataset is empty, if it contains a zero, or if it contains a negative value. No special efforts are made to achieve exact results. (However, this may change in the future.) >>> round(geometric_mean([54, 24, 36]), 9) 36.0 zHgeometric mean requires a non-empty dataset containing positive numbersN)rrr3rrNr)r9r&r&r'r\s�cCs�t|�|krt|�}d}t|�}|dkr2td��n<|dkrn|d}t|tjtf�rf|dkrbt|��|Std��z"t dd�t ||�D��\}}}Wntk r�YdSX||ks�t�t |||�S)aReturn the harmonic mean of data. The harmonic mean, sometimes called the subcontrary mean, is the reciprocal of the arithmetic mean of the reciprocals of the data, and is often appropriate when averaging quantities which are rates or ratios, for example speeds. Example: Suppose an investor purchases an equal value of shares in each of three companies, with P/E (price/earning) ratios of 2.5, 3 and 10. What is the average P/E ratio for the investor's portfolio? >>> harmonic_mean([2.5, 3, 10]) # For an equal investment portfolio. 3.6 Using the arithmetic mean would give an average of about 5.167, which is too high. If ``data`` is empty, or any element is less than zero, ``harmonic_mean`` will raise ``StatisticsError``. z.harmonic mean does not support negative valuesr(z.harmonic_mean requires at least one data pointrzunsupported typecss|]}d|VqdS)r(Nr&�r*rCr&r&r'r-�sz harmonic_mean.<locals>.<genexpr>)r\r]rRr� isinstance�numbersZRealrrGr@r[rar5rQ)r9rZr,rCr<r?r;r&r&r'ros& "cCs\t|�}t|�}|dkr td��|ddkr8||dS|d}||d||dSdS)aBReturn the median (middle value) of numeric data. When the number of data points is odd, return the middle data point. When the number of data points is even, the median is interpolated by taking the average of the two middle values: >>> median([1, 3, 5]) 3 >>> median([1, 3, 5, 7]) 4.0 r�no median for empty data�r(N�r7rRr)r9r,rTr&r&r'r�s cCsLt|�}t|�}|dkr td��|ddkr8||dS||ddSdS)a Return the low median of numeric data. When the number of data points is odd, the middle value is returned. When it is even, the smaller of the two middle values is returned. >>> median_low([1, 3, 5]) 3 >>> median_low([1, 3, 5, 7]) 3 rrerfr(Nrg�r9r,r&r&r'r �scCs,t|�}t|�}|dkr td��||dS)aReturn the high median of data. When the number of data points is odd, the middle value is returned. When it is even, the larger of the two middle values is returned. >>> median_high([1, 3, 5]) 3 >>> median_high([1, 3, 5, 7]) 5 rrerfrgrhr&r&r'r �s r(c Cs�t|�}t|�}|dkr"td��n|dkr2|dS||d}||fD]}t|ttf�rFtd|��qFz||d}Wn(tk r�t|�t|�d}YnXt||�}t |||�}|}||d} |||d|| S)a�Return the 50th percentile (median) of grouped continuous data. >>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5]) 3.7 >>> median_grouped([52, 52, 53, 54]) 52.5 This calculates the median as the 50th percentile, and should be used when your data is continuous and grouped. In the above example, the values 1, 2, 3, etc. actually represent the midpoint of classes 0.5-1.5, 1.5-2.5, 2.5-3.5, etc. The middle value falls somewhere in class 3.5-4.5, and interpolation is used to estimate it. Optional argument ``interval`` represents the class interval, and defaults to 1. Changing the class interval naturally will change the interpolated 50th percentile value: >>> median_grouped([1, 3, 3, 5, 7], interval=1) 3.25 >>> median_grouped([1, 3, 3, 5, 7], interval=2) 3.5 This function does not check whether the data points are at least ``interval`` apart. rrer(rfzexpected number but got %r) r7rRrrc�str�bytesrGrFrUrX) r9Zintervalr,rC�obj�L�l1�l2Zcf�fr&r&r'r�s& cCsHt|�}t|��d�}z|ddWStk rBtd�d�YnXdS)axReturn the most common data point from discrete or nominal data. ``mode`` assumes discrete data, and returns a single value. This is the standard treatment of the mode as commonly taught in schools: >>> mode([1, 1, 2, 3, 3, 3, 3, 4]) 3 This also works with nominal (non-numeric) data: >>> mode(["red", "blue", "blue", "red", "green", "red", "red"]) 'red' If there are multiple modes with same frequency, return the first one encountered: >>> mode(['red', 'red', 'green', 'blue', 'blue']) 'red' If *data* is empty, ``mode``, raises StatisticsError. r(rzno mode for empty dataN)r\r"�most_common� IndexErrorr)r9Zpairsr&r&r'rscCs@tt|����}tt|td�d�dgf�\}}tttd�|��S)a.Return a list of the most frequently occurring values. Will return more than one result if there are multiple modes or an empty list if *data* is empty. >>> multimode('aabbbbbbbbcc') ['b'] >>> multimode('aabbbbccddddeeffffgg') ['b', 'd', 'f'] >>> multimode('') [] r()�keyr)r"r\rp�nextrr!r]r3)r9ZcountsZmaxcountZ mode_itemsr&r&r'r5s �� exclusive)r,�methodc CsL|dkrtd��t|�}t|�}|dkr0td��|dkr�|d}g}td|�D]N}|||}||||}||||||d||} |�| �qN|S|dk�r:|d}g}td|�D]r}|||}|dkr�dn||dkr�|dn|}||||}||d||||||} |�| �q�|Std|����dS) a�Divide *data* into *n* continuous intervals with equal probability. Returns a list of (n - 1) cut points separating the intervals. Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set *n* to 100 for percentiles which gives the 99 cuts points that separate *data* in to 100 equal sized groups. The *data* can be any iterable containing sample. The cut points are linearly interpolated between data points. If *method* is set to *inclusive*, *data* is treated as population data. The minimum value is treated as the 0th percentile and the maximum value is treated as the 100th percentile. r(zn must be at least 1rfz"must have at least two data pointsZ inclusiveruzUnknown method: N)rr7rR�range�appendrN) r9r,rvZld�m�resultrT�jZdeltaZinterpolatedr&r&r'rls4$ $$cs��dk r,t�fdd�|D��\}}}||fSt|��t�fdd�|D��\}}}t�fdd�|D��\}}}||kr|||ks�t�||dt|�8}|dkr�td|��||fS) a;Return sum of square deviations of sequence data. If ``c`` is None, the mean is calculated in one pass, and the deviations from the mean are calculated in a second pass. Otherwise, deviations are calculated from ``c`` as given. Use the second case with care, as it can lead to garbage results. Nc3s|]}|�dVqdS�rfNr&rb��cr&r'r-�sz_ss.<locals>.<genexpr>c3s|]}|�dVqdSr|r&rbr}r&r'r-�sc3s|]}|�VqdSr)r&rbr}r&r'r-�srfrz%negative sum of square deviations: %f)r@rr5rR)r9r~r<r?r;�UZtotal2Zcount2r&r}r'�_ss�sr�cCsLt|�|krt|�}t|�}|dkr,td��t||�\}}t||d|�S)a�Return the sample variance of data. data should be an iterable of Real-valued numbers, with at least two values. The optional argument xbar, if given, should be the mean of the data. If it is missing or None, the mean is automatically calculated. Use this function when your data is a sample from a population. To calculate the variance from the entire population, see ``pvariance``. Examples: >>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5] >>> variance(data) 1.3720238095238095 If you have already calculated the mean of your data, you can pass it as the optional second argument ``xbar`` to avoid recalculating it: >>> m = mean(data) >>> variance(data, m) 1.3720238095238095 This function does not check that ``xbar`` is actually the mean of ``data``. Giving arbitrary values for ``xbar`` may lead to invalid or impossible results. Decimals and Fractions are supported: >>> from decimal import Decimal as D >>> variance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")]) Decimal('31.01875') >>> from fractions import Fraction as F >>> variance([F(1, 6), F(1, 2), F(5, 3)]) Fraction(67, 108) rfz*variance requires at least two data pointsr(�r\r]rRrr�rQ)r9�xbarr,r<�ssr&r&r'r�s&cCsHt|�|krt|�}t|�}|dkr,td��t||�\}}t|||�S)a,Return the population variance of ``data``. data should be a sequence or iterable of Real-valued numbers, with at least one value. The optional argument mu, if given, should be the mean of the data. If it is missing or None, the mean is automatically calculated. Use this function to calculate the variance from the entire population. To estimate the variance from a sample, the ``variance`` function is usually a better choice. Examples: >>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25] >>> pvariance(data) 1.25 If you have already calculated the mean of the data, you can pass it as the optional second argument to avoid recalculating it: >>> mu = mean(data) >>> pvariance(data, mu) 1.25 Decimals and Fractions are supported: >>> from decimal import Decimal as D >>> pvariance([D("27.5"), D("30.25"), D("30.25"), D("34.5"), D("41.75")]) Decimal('24.815') >>> from fractions import Fraction as F >>> pvariance([F(1, 4), F(5, 4), F(1, 2)]) Fraction(13, 72) r(z*pvariance requires at least one data pointr�)r9�mur,r<r�r&r&r'r�s#cCs8t||�}z |��WStk r2t�|�YSXdS)z�Return the square root of the sample variance. See ``variance`` for arguments and other details. >>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75]) 1.0810874155219827 N)rrrArB)r9r��varr&r&r'rs cCs8t||�}z |��WStk r2t�|�YSXdS)z�Return the square root of the population variance. See ``pvariance`` for arguments and other details. >>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75]) 0.986893273527251 N)rrrArB)r9r�r�r&r&r'r &s cCs|d}t|�dkr�d||}d|d|d|d|d|d |d |d|}d|d |d|d|d|d|d|d}||}|||S|dkr�|nd|}tt|��}|dk�r^|d}d|d|d|d|d|d|d|d}d|d |d!|d"|d#|d$|d%|d}n�|d}d&|d'|d(|d)|d*|d+|d,|d-}d.|d/|d0|d1|d2|d3|d4|d}||}|dk�r�|}|||S)5N��?g333333�?g��Q��?g^�}o)��@g�E.k�R�@g ��Ul�@g*u��>l�@g�N����@g�"]Ξ@gnC���`@gu��@giK��~j�@gv��|E�@g��d�|1�@gfR��r��@g��u.2�@g���~y�@g�n8(E@��?�g@g�������?g鬷�ZaI?gg�El�D�?g7\�����?g�uS�S�?g�=�. @gj%b�@g���Hw�@gjR�e�?g�9dh? >g('߿��A?g��~z �?g@�3��?gɅ3��?g3fR�x�?gI�F��l@g����t��>g*�Y��n�>gESB\T?g�N;A+�?g�UR1��?gE�F���?gP�n��@g&�>���@g����i�<g�@�F�>g�tcI,\�>g�ŝ���I?g*F2�v�?g�C4�?g��O�1�?)rrr)�pr��sigma�q�rZnumZdenrCr&r&r'�_normal_dist_inv_cdf9sd��������������������������� �������������������������� �������������������������� r�c@s�eZdZdZddd�Zd8dd�Zed d ��Zdd�d d�Zdd�Z dd�Z dd�Zd9dd�Zdd�Z edd��Zedd��Zedd��Zed d!��Zed"d#��Zd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�ZeZd0d1�ZeZd2d3�Zd4d5�Zd6d7�ZdS):rz(Normal distribution of a random variablez(Arithmetic mean of a normal distributionz+Standard deviation of a normal distribution)�_mu�_sigmar�r�cCs(|dkrtd��t|�|_t|�|_dS)zDNormalDist where mu is the mean and sigma is the standard deviation.r�zsigma must be non-negativeN)rrFr�r�)�selfr�r�r&r&r'�__init__�s zNormalDist.__init__cCs.t|ttf�st|�}t|�}||t||��S)z5Make a normal distribution instance from sample data.)rcr]�tuplerr)�clsr9r�r&r&r'�from_samples�szNormalDist.from_samplesN)�seedcsB|dkrtjn t�|�j�|j|j�����fdd�t|�D�S)z=Generate *n* samples for a given mean and standard deviation.Ncsg|]}�����qSr&r&�r*rT��gaussr�r�r&r'� <listcomp>�sz&NormalDist.samples.<locals>.<listcomp>)�randomr�ZRandomr�r�rw)r�r,r�r&r�r'�samples�szNormalDist.samplescCs<|jd}|std��t||jdd|�tt|�S)z4Probability density function. P(x <= X < x+dx) / dx�@z$pdf() not defined when sigma is zerog�)r�rrr�rr)r�rCrr&r&r'�pdf�s zNormalDist.pdfcCs2|jstd��ddt||j|jtd��S)z,Cumulative distribution function. P(X <= x)z$cdf() not defined when sigma is zeror�r�r�)r�rrr�r)r�rCr&r&r'�cdf�szNormalDist.cdfcCs:|dks|dkrtd��|jdkr*td��t||j|j�S)aSInverse cumulative distribution function. x : P(X <= x) = p Finds the value of the random variable such that the probability of the variable being less than or equal to that value equals the given probability. This function is also called the percent point function or quantile function. r�r�z$p must be in the range 0.0 < p < 1.0z-cdf() not defined when sigma at or below zero)rr�r�r�)r�r�r&r&r'�inv_cdf�s zNormalDist.inv_cdfrtcs��fdd�td��D�S)anDivide into *n* continuous intervals with equal probability. Returns a list of (n - 1) cut points separating the intervals. Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set *n* to 100 for percentiles which gives the 99 cuts points that separate the normal distribution in to 100 equal sized groups. csg|]}��|���qSr&)r�r��r,r�r&r'r��sz(NormalDist.quantiles.<locals>.<listcomp>r()rw)r�r,r&r�r'r�s zNormalDist.quantilescCst|t�std��||}}|j|jf|j|jfkr>||}}|j|j}}|rT|s\td��||}t|j|j�}|s�dt|d|jt d��S|j||j|}|j|jt |d|t ||��} || |} || |}dt|�| �|�| ��t|�|�|�|��S)a�Compute the overlapping coefficient (OVL) between two normal distributions. Measures the agreement between two normal probability distributions. Returns a value between 0.0 and 1.0 giving the overlapping area in the two underlying probability density functions. >>> N1 = NormalDist(2.4, 1.6) >>> N2 = NormalDist(3.2, 2.0) >>> N1.overlap(N2) 0.8035050657330205 z$Expected another NormalDist instancez(overlap() not defined when sigma is zeror�r�)rcrrGr�r�rrrrrrr�)r��other�X�YZX_varZY_varZdvZdmrS�b�x1�x2r&r&r'�overlap�s" (zNormalDist.overlapcCs|jS)z+Arithmetic mean of the normal distribution.�r��r�r&r&r'r�szNormalDist.meancCs|jS)z,Return the median of the normal distributionr�r�r&r&r'r�szNormalDist.mediancCs|jS)z�Return the mode of the normal distribution The mode is the value x where which the probability density function (pdf) takes its maximum value. r�r�r&r&r'r�szNormalDist.modecCs|jS)z.Standard deviation of the normal distribution.�r�r�r&r&r'r�szNormalDist.stdevcCs |jdS)z!Square of the standard deviation.r�r�r�r&r&r'rszNormalDist.variancecCs8t|t�r&t|j|jt|j|j��St|j||j�S)ajAdd a constant or another NormalDist instance. If *other* is a constant, translate mu by the constant, leaving sigma unchanged. If *other* is a NormalDist, add both the means and the variances. Mathematically, this works only if the two distributions are independent or if they are jointly normally distributed. �rcrr�rr��r�r�r&r&r'�__add__ s zNormalDist.__add__cCs8t|t�r&t|j|jt|j|j��St|j||j�S)asSubtract a constant or another NormalDist instance. If *other* is a constant, translate by the constant mu, leaving sigma unchanged. If *other* is a NormalDist, subtract the means and add the variances. Mathematically, this works only if the two distributions are independent or if they are jointly normally distributed. r�r�r&r&r'�__sub__s zNormalDist.__sub__cCst|j||jt|��S)z�Multiply both mu and sigma by a constant. Used for rescaling, perhaps to change measurement units. Sigma is scaled with the absolute value of the constant. �rr�r�rr�r&r&r'�__mul__%szNormalDist.__mul__cCst|j||jt|��S)z�Divide both mu and sigma by a constant. Used for rescaling, perhaps to change measurement units. Sigma is scaled with the absolute value of the constant. r�r�r&r&r'�__truediv__-szNormalDist.__truediv__cCst|j|j�S)zReturn a copy of the instance.�rr�r��r�r&r&r'�__pos__5szNormalDist.__pos__cCst|j|j�S)z(Negates mu while keeping sigma the same.r�r�r&r&r'�__neg__9szNormalDist.__neg__cCs ||S)z<Subtract a NormalDist from a constant or another NormalDist.r&r�r&r&r'�__rsub__?szNormalDist.__rsub__cCs&t|t�stS|j|jko$|j|jkS)zFTwo NormalDist objects are equal if their mu and sigma are both equal.)rcr�NotImplementedr�r�r�r&r&r'�__eq__Es zNormalDist.__eq__cCst|j|jf�S)zCNormalDist objects hash equal if their mu and sigma are both equal.)�hashr�r�r�r&r&r'�__hash__KszNormalDist.__hash__cCs t|�j�d|j�d|j�d�S)Nz(mu=z, sigma=�))r2r#r�r�r�r&r&r'�__repr__OszNormalDist.__repr__)r�r�)rt) r#r$r%�__doc__� __slots__r��classmethodr�r�r�r�r�rr��propertyrrrrrr�r�r�r�r�r��__radd__r��__rmul__r�r�r�r&r&r&r'r�sF� " )r��__main__)�isclose)�add�sub�mul�truediv)�repeat� ������i��z Test z with another NormalDist:�z with a constant:�z Test constant with �:cCs@t|j|jdd�st||f��t|j|jdd�s<t||f��dS)Ng{�G�z�?)Zrel_tol)r�rr5r)�G1�G2r&r&r'�assert_closesr�i�����I��/g`@@cCsg|]}|t�qSr&��srbr&r&r'r��sr�cCsg|]}|t�qSr&r�rbr&r&r'r��scCsg|]}|t�qSr&r�rbr&r&r'r��scCsg|]}|t�qSr&r�rbr&r&r'r��scCsg|]\}}||�qSr&r&�r*rC�yr&r&r'r��scCsg|]\}}||�qSr&r&r�r&r&r'r��s)r)rY)r()N)N)N)N)N)Sr��__all__rBrdr�Z fractionsrZdecimalr� itertoolsrZbisectrrrrrrrrrr �operatorr!�collectionsr"rNrr@r4r0r.rQrUrXr[rrrrrr r rrrrr�rrrr r�rZ_statistics�ImportErrorr#r�r�r�r�r�r�ZdoctestZg1Zg2r5r,r�r�r��func�printr�r3Zconstr�r�r�r�rH�zipZtestmodr&r&r&r'�<module>s�S�( : / 779 / , JQ � �
/home/jackpotjunglegam/../../lib64/python3.8/xmlrpc/.././__pycache__/statistics.cpython-38.pyc