regplot과 scatterplot 함께 활용하기
- regplot의 점이 노출되지 않게 하려면
scatter = False
로 설정해야 한다.
fig, axs = plt.subplots(2, 1, figsize = (15, 10))
sns.regplot(data = test_final, x = "test_loss", y = "val_loss", scatter = False, ax = axs[0])
sns.scatterplot(data = test_final, x = "test_loss", y = "val_loss", hue = "test_pearsonr", ax = axs[0])
sns.regplot(data = test_final, x = "test_loss", y = "val_loss", scatter = False, ax = axs[1])
sns.scatterplot(data = test_final, x = "test_loss", y = "val_loss", hue = "test_f1_score", ax = axs[1])
FacetGrid 활용하기
- 아래 링크를 참고하면 된다.