how to sort numpy 2D array with 2 elements: For example I have:
[['0.6435256766173603' 'some text']
 ['0.013180497307149886' 'some text2']
 ['0.017696632827641112' 'some text3']]  
I need:
[['0.6435256766173603' 'some text']
 ['0.017696632827641112' 'some text3']
 ['0.013180497307149886' 'some text2']] 
I tried np.argsort, np.sort, but it doesn't work! Any help will be appreciated


numpy.ndarraywith strings? You should probably just use normal Python lists...