I have a DataFrame in which a column might have three kinds of values, integers (12331), integers as strings (\'345\') or some other string (\'text\').
Is there a way to
you can use df._get_numeric_data() directly.