Python Pandas其中一个字段既有文本类型“N”,又有数字导致数据类型只能为“Object”请问怎么将这一个字段里的数字修改为float类型呢?
df = df.apply(pd.to_numeric, errors='ignore')