§
    Øõc  ã                   ó@   — d Z ddlZddlZ ej        e¦  «        Zd„ ZdS )zqThis module contains functions to perform aggregation on a list of values obtained from the confirmation measure.é    Nc                 ó*   — t          j        | ¦  «        S )aG  
    Perform the arithmetic mean aggregation on the output obtained from
    the confirmation measure module.

    Parameters
    ----------
    confirmed_measures : list of float
        List of calculated confirmation measure on each set in the segmented topics.

    Returns
    -------
    `numpy.float`
        Arithmetic mean of all the values contained in confirmation measures.

    Examples
    --------
    .. sourcecode:: pycon

        >>> from gensim.topic_coherence.aggregation import arithmetic_mean
        >>> arithmetic_mean([1.1, 2.2, 3.3, 4.4])
        2.75

    )ÚnpÚmean)Úconfirmed_measuress    úBlib/python3.11/site-packages/gensim/topic_coherence/aggregation.pyÚarithmetic_meanr      s   € õ0 Œ7Ð%Ñ&Ô&Ð&ó    )Ú__doc__ÚloggingÚnumpyr   Ú	getLoggerÚ__name__Úloggerr   © r	   r   ú<module>r      sN   ðð xÐ wà €€€Ø Ð Ð Ð à	ˆÔ	˜8Ñ	$Ô	$€ð'ð 'ð 'ð 'ð 'r	   