Wie wähle ich bestimmte Spalten für Regressionsdiagramme aus
sns.regplot(data=df, x='c_1', y='c_2')
sns.regplot(data=df, x='c_3', y='c_4')
Odd Ocelot
sns.regplot(data=df, x='c_1', y='c_2')
sns.regplot(data=df, x='c_3', y='c_4')