Hello I have csv (tab separated) with header and I would like to load it into Pandas DataFrame in Python 3.5. Problem is, that some headers missing (there are columns with data but without header - as in example below). I tried to load it by read_csv function but if I dont skip first line, it will merge first data lines to match number of headers and number of data columns.
Is there any way, how to read this csv and automatically add missing headers? Like Header4 and Header 5 in example below?
Thank you
| Header1 | Header2 | Header3 | | |
|---------|---------|---------|--------|--------|
| value1 | value2 | value3 | value4 | value5 |
| value1 | value2 | value3 | value4 | value5 |