I have such a data frame
0 1 2
0 240 RSOW 2008-07-11 20:35:00
1 250 RSOW 2008-06-27 19:10:00
...
I want to sort it by column 2 by date. But later on same dates look like \N
and I want to omit those. And the second issue is the format – time and date are in the same column
How can I sort this with pandas without any problems with \N
and this time thing?