I´m trying to convert the dtype from a dataframe column which is object to numeric but I cannot do it because it´s showing this ValueError: invalid literal for int() with base 10: '7.775,000'. I've tried with pd.to_numeric and with astype but none of them works. Can you help me please? Here is the line of my code:
join_especies_BYMA['Último Precio'] = join_especies_BYMA['Último Precio'].astype(int)