如何将字符串与python数据帧值连接到where条件

时间:2017-06-15 05:19:58

标签: python pandas

我想要连接列:['Time Period']值和其他字符串('01 -01')到新列:'Date',条件为dt ['Frequency'] =='0'。请帮忙,我是python的新手,通过一些数据处理来学习脚本。

..done, Total time: 10, Errors: 5, there is some text here Results:, , Total time: 10, Errors: 5, , [INFO]...

1 个答案:

答案 0 :(得分:1)

df["Date"] = df.loc[df['Frequency']==0, 'Time Period'] +"01-01"

回答更新