AttributeError: module 'seaborn'
2022-04-19 本文已影响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字就水够了 哈哈哈哈哈)