DataFrame中的数据全部转换为浮点数
#----清洗数据----
new_df = df.applymap(lambda x:x if x!='--' else '0.0')
new_df = new_df.applymap(lambda i:float(i[:-1].replace(',','')) if i[-1] == '亿' else round(float(i[:-1].replace(',',''))/10000,2))
DataFrame中的数据全部转换为浮点数
#----清洗数据----
new_df = df.applymap(lambda x:x if x!='--' else '0.0')
new_df = new_df.applymap(lambda i:float(i[:-1].replace(',','')) if i[-1] == '亿' else round(float(i[:-1].replace(',',''))/10000,2))