Very new to Python so please bear with me here. I am trying to sort an array that I have imported into python with numpy.sort:
guy = numpy.sort(sasBody, axis=-0)
The first column is a column of strings, so I would like to alphabetically sort the array. The problem I am having is that it does sort the first column, however all the numbers associated with the prior rows are now not connected to its correct first column counterpart.
What am I doing wrong?