马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
pandas数据清洗——数据转换2
# 数据转换:字典方式指定替换
# 1) 对于Series通过字典的key指定要被替换的数据,value为替换成的数据。import pandas as pd
ss = pd.Series(["a", "b", "c", "a", "c"], index = [2,3,1, 4, 5])
print (ss)
ss.replace({"c":"hello", "a" : "world"}, inplace = True)
print (ss)
# 2) 对于DataFrame,可以通过字典的key指定列、value指定要被替换的数据,
# 第二个参数为替换成的数据。
idx = [1,3,2,4]
val = {'name' : "hello the cruel world".split(),
'growth' : [100, 125, 150, 200]}
df = pd.DataFrame(val, idx)
print (df)
df.replace({"name" : "the"}, "THE", inplace = True)
print (df)
|