python pandas如何转换‘object’成其他数据类型 transfer the type of pvt_mean_rt transfer the type of pvt_mean_rt 老版本表达(失效) df = df.convert_objects(convert_numeric=True) 新的语法表达 df[‘pvt_mean_rt’] = df[‘pvt_mean_rt’].apply(pd.to_numeric, errors=‘coerce’)