I'm not doing anything overly complex I believe. I'm presorting a large csv data file because it is full of data that arrives in random time order. The index is correct, but the return formatting is off.

    sortedList=sorted(reader,key=operator.itemgetter(1))

So instead of sorting like [-100 -10 -1 0 10 100 5000 6000]; I get [-1 -10 -100 0 100 5000 60]

I tried both the lambda function examples and itemgetter, but I don't really know where to go from there.

Thanks for the help.

The answer to my question is in the comments. The numerical value was being sorted as a string and not a number. I didn't know that I could specify the data type of the key in sorted(). This code works as I intended:

    sortedList=sorted(reader,key=lambda x:float(x[1]))
link|improve this question
1  
It would help if you posted an example of the data in reader. – Sodel the Vociferous May 31 '11 at 21:13
1  
are the content in reader strings? then you will get string based sort which explains the result. If ints, correct list is returned – Fredrik May 31 '11 at 21:18
feedback

5 Answers

up vote 3 down vote accepted

Just from the output you see there, it looks like these are being sorted as strings rather than as numbers.

So you could do:

sortedList=sorted(reader, key=lambda t: int( t[1] ))

or

sortedList=sorted(reader, key=lambda t: float( t[1] ))

Or better, try to ensure that the sequence reader gets populated with numbers, rather than strings, when it's created, perhaps using QUOTE_NONNUMERIC as a fmtparam for the reader (see http://docs.python.org/library/csv.html#csv.QUOTE_NONNUMERIC).

link|improve this answer
This! Thank you. – Mike May 31 '11 at 21:26
Welcome. Note that strictly speaking you aren't specifying the type of the data in the key as such - it's just that float(x) gives you the conversion of x from string to float. You can actually use an arbitrary complex function of one variable as your key - either using a lambda or an inner function like def f(t): return float( t[1] ) (in which case you use key=f when you do your sort) – slothrop May 31 '11 at 21:33
feedback

It looks like "reader" yields strings, and what you want is integers. You could try something like :

    sorted(reader, key=lambda x: float(x[1]))
link|improve this answer
They are 'doubles' as they represent a time value. I tried your code and it chokes on this: ValueError: invalid literal for int() with base 10: '0.06949624419212341' – Mike May 31 '11 at 21:21
@mike : try float instead of int. – dugres May 31 '11 at 21:27
Yup. Works. Thanks! – Mike May 31 '11 at 21:32
feedback

it looks like your numbers are getting sorted alphabetically (as strings) rather than numerically:

>>> sorted([10,2000,30])
[10, 30, 2000]
>>> sorted(['10','2000','30'])
['10', '2000', '30']

To fix this, you can pass a numeric sort:

def numeric_compare(x, y):
    return int(x)-int(y)

>>> sorted(['10','2000','30'],cmp=numeric_compare)
['10', '30', '2000']
link|improve this answer
1  
nice example from wiki.python.org/moin/HowTo/Sorting :-) – Fredrik May 31 '11 at 21:22
feedback

It looks like your list is being sorted as strings rather than numbers. When you read in your CSV file, it is still text and must be converted to integers first.

link|improve this answer
feedback

I like compose:

from operator import itemgetter

def compose(f, g):
    return lambda *a, **k: g(f(*a, **k))

sortedList = sorted(reader, key=compose(itemgetter(1), float))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.