module 'seaborn' has no attribute 'relplot'
时间: 2023-08-04 13:02:30 浏览: 213
seaborn散点图
5星 · 资源好评率100%
这个错误是因为在你的代码中使用了seaborn库的relplot函数,但是该库中并没有relplot这个属性。[1]相反,你可以使用scatterplot函数来代替relplot函数来绘制散点图。你可以按照以下方式修改你的代码来解决这个问题:import seaborn as sns from matplotlib import pyplot as plt tips = sns.load_dataset('tips') sns.set_style('darkgrid') ax = sns.scatterplot(x='total_bill', y='tip', hue='smoker', style="smoker",data=tips) ax.legend(shadow=False, fancybox=False, ncol=1, fontsize=10, loc='upper left') plt.show() [2]这样修改后,你应该能够成功绘制出散点图并显示图例。
阅读全文