I have an incredibly obvious question, but I cannot find a pandas solution (I found this, which is close).
My text file has no row delimiter. Thus, pandas reads the file as a data frame with a single row and a ton of columns. It looks as follows:
header_1, header_2, header_3, 1, jan, 600, 2, feb, 900, 3, jan, 678
I want to read three elements per row. The end result should look as follows:
header_1 header_2 header_3
1 jan 600
2 feb 900
3 jan 678
How can I tell the file to read every third comma as a line break?