I have the following pandas dataframe:
>>>ID WKT
0 4272 Point(4.21189 3.1298)
1 2345 Point(None None)
2 1254 Point (3.8945 4.6712)
...
I would like to remove rows that do no contain any digits in the 'WKT' column, like row 1. I saw that ther are functions as isnumeric() but I don't want to check if all the characters in the cell are digits, but only if it contains digits or nit, and if not to remove it.
My desired output should look like this:
>>>ID WKT
0 4272 Point(4.21189 3.1298)
2 1254 Point (3.8945 4.6712)
...