I just run a python script that writes a dataframe into a csv file. 5 executions of the script (with different arguments) are running at the same time and are writing into the same csv sheet.
I just read the csv file with the pandas read_csv function and realized that some of my data is missing. I had like 2600 1 hour ago and now it is only 1400 rows.
It looks like sth. is going wrong when saving the data frame into the csv..
I just do:
evaluation_df.to_csv('Evaluation_Scen1.csv')
Does anyone know what is going on here?