gzj137070928 发表于 2020-12-18 14:47:42

pandas数据清洗——数据转换2

pandas数据清洗——数据转换2
# 数据转换:字典方式指定替换
# 1) 对于Series通过字典的key指定要被替换的数据,value为替换成的数据。
import pandas as pd
ss = pd.Series(["a", "b", "c", "a", "c"], index = )
print (ss)
ss.replace({"c":"hello", "a" : "world"}, inplace = True)
print (ss)

# 2) 对于DataFrame,可以通过字典的key指定列、value指定要被替换的数据,
# 第二个参数为替换成的数据。
idx =
val = {'name' : "hello the cruel world".split(),
       'growth' : }
df = pd.DataFrame(val, idx)
print (df)
df.replace({"name" : "the"}, "THE", inplace = True)
print (df)
页: [1]
查看完整版本: pandas数据清洗——数据转换2