Bagaimana cara memilih kolom tertentu untuk plot regresi

sns.regplot(data=df, x='c_1', y='c_2')
sns.regplot(data=df, x='c_3', y='c_4')
Odd Ocelot