import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
sns.set(style="darkgrid")
g = sns.scatterplot(x="Area", y="Rent/Sqft", hue="region", style="availability", data=df)
当我运行它时,我得到下面的图。
我想将图例移到情节之外。我用谷歌搜索并尝试了以下
g.legend(loc='right', bbox_to_anchor=(1.25, 0.5), ncol=1)
plt.show()
但我没有得到任何输出。此外,我无法理解对象 plt 如何连接到我的 sns 对象
我使用的是 Jupyter Notebook、Python 3.6 和 Seaborn 0.9.0。
三国纷争
相关分类