Оттенок используется FacetGrid
для группировки входных данных. Он не может сгруппировать его только частично.
Решение matplotlib, вероятно, будет выглядеть как
import matplotlib.pyplot as plt
import seaborn as sns
tips = sns.load_dataset("tips", cache=True)
n = len(tips["time"].unique())
usmoker = tips["smoker"].unique()
fig, axes = plt.subplots(ncols=n, sharex=True, sharey=True)
for ax, (time, grp1) in zip(axes.flat, tips.groupby("time")):
ax.set_title(time)
ax.set_prop_cycle(plt.rcParams["axes.prop_cycle"])
for smoker in usmoker:
grp2 = grp1[grp1["smoker"] == smoker]
sns.regplot("total_bill", "tip", data=grp2, label=str(smoker),
fit_reg=False, ax=ax)
ax.legend(title="Smoker")
for ax, (time, grp1) in zip(axes.flat, tips.groupby("time")):
sns.regplot("total_bill", "tip", data=grp1, ax=ax, scatter=False,
color="k", label="regression line")
plt.show()