gpt4 book ai didi

python - 将 string.format() 应用于 Pandas DataFrame 中的行

转载 作者:太空宇宙 更新时间:2023-11-03 13:40:28 24 4
gpt4 key购买 nike

我想用引用列的格式化字符串表示 pandas DataFrame 中的一行。我发现的最佳方法是将行转换为字典,然后转换为 string.format()

假设一个 pd.DataFrame df 包含 'specimen' 和 'date' 列:

r = df.loc[0]
print("{specimen}_{date}".format(**r.to_dict()))

可用于使用列数据应用格式字符串。

这看起来效率不高。是否必须有更好的方法直接在 pandas 中执行此操作而无需转换为字典,同时保持在格式字符串中显式命名列的灵 active ?

更新:

最终目的是为 matplotlib 图生成刻度标签。使用以下答案:

plot.set_yticklabels(["{specimen}_{date}".format(**r) for i,r in df.iterrows()])

最佳答案

您可以只使用行本身。它是一个 Series,支持对项目的类字典访问:

>>> d
A B C
0 1 This One
1 2 is Two
2 3 crud Three
>>> "{A} then {B} and also {C}".format(**d.iloc[0])
'1 then This and also One'

关于python - 将 string.format() 应用于 Pandas DataFrame 中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32363500/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com