I want to sort a submission file (image_id) to be in this order:
but when I do sorting in pandas or excel I get this order :
note: I have another csv file contains the correct order.
any ideas how can I do it?
I want to sort a submission file (image_id) to be in this order:
but when I do sorting in pandas or excel I get this order :
note: I have another csv file contains the correct order.
any ideas how can I do it?
I would “extract” the number part from id column and sort it by that number.
thanks i did that