I see that Pandas has read_fwf
, but does it have something like DataFrame.to_fwf
? I'm looking for support for field width, numerical precision, and string justification. It seems that DataFrame.to_csv
doesn't do this. numpy.savetxt
does, but I wouldn't want to do:
numpy.savetxt('myfile.txt', mydataframe.to_records(), fmt='some format')
That just seems wrong. Your ideas are much appreciated.
See Question&Answers more detail:os