def get_numeric_columns(df): return df.select_dtypes(include='number').columns.tolist() def get_all_columns(df): return df.columns.tolist()