I want to create a preprocessing function that would add a suffix to the dataframe name.
This will allow me to easily identify my dataframes without or with feature scaling and the technique used if applicable.
For example:
mas = MaxAbsScaler()
def preproce_MaxAbsScaler(df):
[df+str("_mas")]=pd.DataFrame(mas.fit_transform(df),
index=df.index,
columns=df.columns)
return [df+str("_mas")]