g = sns.factorplot(x="time", y="pulse", hue="kind", col="diet", data=exercise)
在seaborn中,有没有办法在第一个子图而不是第二个图中绘制图例?此示例来自此处:https://seaborn.pydata.org/generated/seaborn.factorplot.html?highlight=factor#seaborn.factorplot
答案 0 :(得分:2)
以下情况应该有效。
g = sns.factorplot(x="time", y="pulse", hue="kind",
col="diet", data=exercise, legend=False)
g.axes[0][0].legend()
PS:
答案 1 :(得分:1)