B
    Z                 @   s"   d Z ddlmZmZ dddZdS )z=

Created on Fri Mar 30 18:27:25 2012
Author: Josef Perktold
    )tukeyhsdMultiComparison皙?c             C   s   t | |j|dS )a}  calculate all pairwise comparisons with TukeyHSD confidence intervals

    this is just a wrapper around tukeyhsd method of MultiComparison

    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

    See Also
    --------
    MultiComparison
    tukeyhsd
    statsmodels.sandbox.stats.multicomp.TukeyHSDResults

    )alpha)r   r   )Zendoggroupsr    r   :lib/python3.7/site-packages/statsmodels/stats/multicomp.pypairwise_tukeyhsd
   s    r	   N)r   )__doc__Z#statsmodels.sandbox.stats.multicompr   r   r	   r   r   r   r   <module>   s   