So I can export a DataFrame in a standard format, e.g.
A B C
val val val
val val val
But if I want the data to be reverse compatible with some older software I need to have 4 header rows, regardless of their content. It could be e.g.
nan nan nan
nan nan nan
nan nan nan
nan nan nan
A B C
val val val
val val val
Is there a simple internal way of accomplishing this? I guess one could export a CSV, then import it, and add the new lines, but that sounds like a hacky detour. Especially for many exported files.