Вы можете изменить атрибуты для sns
при переходе от одного графика к другому.
x = np.random.randint(0, 10, size=10)
y = np.random.randint(0, 10, size=10)
z = np.random.randint(0, 2, size=10)
df=pd.DataFrame({
'x':x,
'y':y,
'z':z
})
sns.set(style="whitegrid", font='Times New Roman')
g = sns.lmplot('x', 'y', df, hue='z')
plt.show()
sns.set(style="dark", font='Arial')
g = sns.lmplot('x', 'y', df, hue='z')
plt.show()
Выход:
![enter image description here](https://i.stack.imgur.com/FnJwO.jpg)