Hello,
A little new to this, but getting there.
I have a csv that I need to add some columns to. All of the columns have default values in them. I can read the csv and get it into an array, but I'm not sure how to write the values 'into' the array.
Original csv
1, data, data
2,, data
3, data,,
etc...
New csv
1, data, data, 1, 0.00, N
2, 0, data, 1, 0.00, N
3, data, 0, 1, 0.00, N
So the three new columns will always contain the same data. As noted there I also need to take the 'nulls' and change em to zero.
I'm not even entirely sure what function is the best here.
Thanks.