
    Dj*                     (    d Z ddlmZmZ ddgZddZy)z=

Created on Fri Mar 30 18:27:25 2012
Author: Josef Perktold
    )tukeyhsdMultiComparisonr   r   c                 :    t        | |      j                  |      S )a  
    Calculate all pairwise comparisons with TukeyHSD confidence intervals

    Parameters
    ----------
    endog : ndarray, float, 1d
        response variable
    groups : ndarray, 1d
        array with groups, can be string or integers
    alpha : float
        significance level for the test

    Returns
    -------
    results : TukeyHSDResults instance
        A results class containing relevant data and some post-hoc
        calculations, including adjusted p-value

    Notes
    -----
    This is just a wrapper around tukeyhsd method of MultiComparison

    See Also
    --------
    MultiComparison
    tukeyhsd
    statsmodels.sandbox.stats.multicomp.TukeyHSDResults
    )alpha)r   r   )endoggroupsr   s      _C:\Crop_Prediction\Backend\crop-ai-system\venv\Lib\site-packages\statsmodels\stats\multicomp.pypairwise_tukeyhsdr
      s    < 5&)222??    N)g?)__doc__#statsmodels.sandbox.stats.multicompr   r   __all__r
    r   r	   <module>r      s"    (
)@r   