美文网首页
AttributeError: module 'seaborn'

AttributeError: module 'seaborn'

作者: 王叽叽的小心情 | 来源:发表于2022-04-19 17:14 被阅读0次

    错误提示:AttributeError: module 'seaborn' has no attribute 'histplot'

    错误代码:

    axs = sns.histplot(df['flight'], ax=axs, log_scale=False, legend=True, color='#63b2ee', bins=50, label='Flight')
    

    分析:别的地方用的好好的,这种情况一看就是Python包没有更新好

    解决方法:更新一下seaborn包,在命令行下输入pip install -U seaborn即可

    更新成功

    更新成功,代码顺利了

    (再多写两句,今天的100字就水够了 哈哈哈哈哈)

    相关文章

      网友评论

          本文标题:AttributeError: module 'seaborn'

          本文链接:https://www.haomeiwen.com/subject/gfzsertx.html