파이썬 regplot 그래프

Linear Regression 같은 경우 regplot으로 시각화 할 수 있다.

import seaborn as sns

sns.regplot( x = df['X'], y = df['Y']);