Seaborn:如何将边距标题添加到 replot?
Seaborn: How to add margin titles to a relplot?
Seaborn 的 FacetGrid 有一个 margin_titles
kwarg,其效果显示在 documentation 例如
如何在使用 Seaborn 时类似地添加页边标题 relplot?
我不确定你想如何使用它,但这可以在 facet_kws 参数的字典中给出。
import seaborn as sns
tips = sns.load_dataset("tips")
sns.relplot(
data=tips,
x="total_bill",
y="tip",
hue="time",
col="day",
row="smoker",
facet_kws={"margin_titles": True}
)
Seaborn 的 FacetGrid 有一个 margin_titles
kwarg,其效果显示在 documentation 例如
如何在使用 Seaborn 时类似地添加页边标题 relplot?
我不确定你想如何使用它,但这可以在 facet_kws 参数的字典中给出。
import seaborn as sns
tips = sns.load_dataset("tips")
sns.relplot(
data=tips,
x="total_bill",
y="tip",
hue="time",
col="day",
row="smoker",
facet_kws={"margin_titles": True}
)