abu*_*nte 7 python dataframe pandas pandas-apply
我有一个像这样的数据框:
name . size . type . av_size_type
0 John . 23 . Qapra' . 22
1 Dan . 21 . nuk'neH . 12
2 Monica . 12 . kahless . 15
Run Code Online (Sandbox Code Playgroud)
我想用一个句子创建一个新列,如下所示:
name . size . type . av_size_type . sentence
0 John . 23 . Qapra' . 22 . "John has size 23, above the average of Qapra' type (22)"
1 Dan . 21 . nuk'neH . 12 . "Dan has size 21, above the average of nuk'neH type (21)"
2 Monica . 12 . kahless . 15 . "Monica has size 12l, above the average of kahless type (12)
Run Code Online (Sandbox Code Playgroud)
它会是这样的:
def func(x):
string="{0} has size {1}, above the average of {2} type ({3})".format(x[0],x[1],x[2],x[3])
return string
df['sentence']=df[['name','size','type','av_size_type']].apply(func)
Run Code Online (Sandbox Code Playgroud)
然而,显然这种合成方法不起作用。
有人对此有建议吗?
使用 splat 并打开包装
string = lambda x: "{} has size {}, above the average of {} type ({})".format(*x)
df.assign(sentence=df.apply(string, 1))
name size type av_size_type sentence
0 John 23 Qapra' 22 John has size 23, above the average of Qapra' ...
1 Dan 21 nuk'neH 12 Dan has size 21, above the average of nuk'neH ...
2 Monica 12 kahless 15 Monica has size 12, above the average of kahle...
Run Code Online (Sandbox Code Playgroud)
如果需要,可以使用字典解包
string = lambda x: "{name} has size {size}, above the average of {type} type ({av_size_type})".format(**x)
df.assign(sentence=df.apply(string, 1))
name size type av_size_type sentence
0 John 23 Qapra' 22 John has size 23, above the average of Qapra' ...
1 Dan 21 nuk'neH 12 Dan has size 21, above the average of nuk'neH ...
2 Monica 12 kahless 15 Monica has size 12, above the average of kahle...
Run Code Online (Sandbox Code Playgroud)
使用列表理解作为快速替代方案,因为您被迫迭代:
string = "{0} has size {1}, above the average of {2} type ({3})"
df['sentence'] = [string.format(*r) for r in df.values.tolist()]
Run Code Online (Sandbox Code Playgroud)
df
name size type av_size_type \
0 John 23 Qapra' 22
1 Dan 21 nuk'neH 12
2 Monica 12 kahless 15
sentence
0 John has size 23, above the average of Qapra' ...
1 Dan has size 21, above the average of nuk'neH ...
2 Monica has size 12, above the average of kahle...
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1570 次 |
| 最近记录: |