opert
Technical User
- May 4, 2011
- 6
Hello,
I have the following rows:
1 0.054210 4
1 1.215824 5
1 0.790275 32
1 0.739529 23
3 0.429844 12
3 0.000000 94
I would like to filter the rows in that way if the first column is the same than find the minimum value of the second column and in this case print the corresponding 3rd column..
E.g. taking the input above, I should get
1 0.054210 4
3 0.000000 94
Can anyone help me to solve this?
EDIT:
or rather should get
4
94
(but almost the same)