seaborn 的 coefplot 函数抛出错误

seaborn's coefplot function throwing error

我正在尝试使用 seaborn 的 coefplot 函数,但它没有显示输出。相反,我收到一个错误:

AttributeError: module 'seaborn' has no attribute 'coefplot'.

myresultsmyresult .env_corr(env_vars)
def env_corr(self, env_vars, coeff_plot=False, qq_plot=False):
    """
    Determine correlations with environmental/non-discretionary variables
    using a logit regression. Tobit will be implemented when available
    upstream in statsmodels.

    Takes:
        env_vars: A pandas dataframe of environmental variables

    Returns:
        corr_mod: the statsmodels' model instance containing the inputs
                  and results from the logit model.

    Note that there can be no spaces in the variables' names.
    """

    import matplotlib.pyplot as plt
    from statsmodels.regression.linear_model import OLS
    from statsmodels.graphics.gofplots import qqplot
    import seaborn as sns

    env_data = _to_dataframe(env_vars)
    corr_data = env_data.join(self['Efficiency'])
    corr_mod = OLS.from_formula(
        "Efficiency ~ " + " + ".join(env_vars.columns), corr_data)
    corr_res = corr_mod.fit()

    #plot coeffs
    if coeff_plot:
        coefplot("Efficiency ~ " + " + ".join(env_vars.columns),
                 data=corr_data)
        plt.xticks(rotation=45, ha='right')
        plt.title('Regression coefficients and standard errors')

    #plot qq of residuals
    if qq_plot:
        qqplot(corr_res.resid, line='s')
        plt.title('Distribution of residuals')

    print(corr_res.summary())

    return corr_res

请帮忙。

我相信 seaborn 的 coefplot 函数已在 0.8.0 版本(2017 年 7 月)中正式弃用

请参考下面的link:

https://seaborn.pydata.org/whatsnew.html

谢谢!