I have a folder of around 200 CSV files. Each only have values in the first row. How do I combine the files so that is each CSV file becomes a row in the new dataset.
For example:
1.csv contains:
[1, 2, 3, 4, 5, 6]
2.csv contains:
[2, 3, 4, 5, 5, 7]
I want to combine the CSV's so that the final CSV looks like:
final.csv contains:
[1, 2, 3, 4, 5, 6]
[2, 3, 4, 5, 5, 6]
*Each matrix is a row of the .csv, and each , means a new cell.
Thank You!
"[1, 2, ..that is, do they actually have those brackets?cat