I'm new into python, does somebody have an idea what would be a good approach? I could just script it, but it's probably faster to use a package.
I have this .csv file (gigabytes large):
name, value, time
A, 1, 10
B, 2, 10
C, 3, 10
C, 3, 10 (should ignore duplicates, or non complete (A,B,C) entries
A, 4, 12 (should be sorted by time, this entry should be at the end, after time==11)
B, 5, 12
C, 6, 12
B, 7, 11 (order of A,B,C might be different)
C, 8, 11
A, 9, 11
convert it to a new .csv file containing:
time, A, B, C
10, 1, 2, 3
11, 9, 7, 8
12, 4, 5, 6