def chi2isf(q, df):
    """Chi2 Inverse survival function (inverse of `sf`) at q"""
    return special.chdtri(df, q)  #pylint: disable=no-member