Emilio Gagliardi
09/13/2023, 9:59 PMdatajoely
09/13/2023, 10:00 PMsave_args:
mode: a
does that not work?Emilio Gagliardi
09/13/2023, 10:02 PMsave_args:
mode: 'a'
I'll remove the quotes. I never know if I'm supposed to quote strings in yaml or not 🧐validation_metrics:
type: pandas.CSVDataSet
filepath: "data/08_reporting/validation_metrics.csv"
load_args:
save_args:
index: False
na_rep: "NaN"
mode: a
and then in my node:
new_data_dict = {...} <- a single dictionary
new_data_df = pd.DataFrame([new_data_dict])
return new_data_df
Juan Luis
09/14/2023, 8:41 AMEmilio Gagliardi
09/14/2023, 7:36 PM