I want to load only last few columns in a text file with some evaluation.
I used numpy.genfromtxt with the argument converters={-1:func,-2:func}
But it is not working. On the other hand if i give the forward indexing like converters={56:func,57:func} it works correctly.
Why doesn't converters argument support the python's backward indexing? Is there anyway to do this if i know only the indexing of column from the last?