import seaborn as sns import matplotlib.pyplot as plt sns.set() tips = sns.load_dataset("tips") sns.relplot(x="total_bill", y="tip", col="time", hue="smoker", style="smoker", size="size", data=tips); plt.show()