Feb-03-2022, 07:05 PM
I have found this solution.
Replacing the last line with:
I will get:
Station_1.csv
Station_2.csv
It is not perfect because I still can´t use the name that is stored in
, but it solves the problem.
Replacing the last line with:
1 |
df.to_csv( f 'Station_{index+1}.csv' ) |
Station_1.csv
Station_2.csv
It is not perfect because I still can´t use the name that is stored in
1 |
location = row[ 'Name' ] |