I have a pandas DataFrame with columns
[Brand, CPL1, CPL4, Part Number, Calendar Year/Month, value, type]
When they come out of StatsModels X13, they occasionaly have very large string representations of integers in values that make no sense in their context, EG:
[float(1.2), float(1.3), str("63478"), float(1.1)]
How can I remove the rows where this has happened? Due to them being string representations of integers, I cannot cast them or any similar method.