I have a table with several columns and want save it with
numpy.savetxt('test.txt', test, fmt='%f')
I want save only the last column in float format, all other columns should be integers... For example
1 1 1 0.5
1 2 2 0.3
. . . .
How I can enlarge my savetxt function or use some alternative? Thank you in advance!