I am trying to move every row that contains a specific character in a column to the bottom of the dataframe.....
Index Closer Running
0 4 AQ
1 - AQ
2 - AD
3 2 AP
4 9 AP
5 5 AQ
I am trying to move every row in the Closer column that contains "-" to the bottom of the dataframe so my resultant dataframe looks like this, how do I go about doing this?
Index Closer Running
0 4 AQ
1 2 AP
2 9 AP
3 5 AQ
4 - AQ
5 - AD