我的数据框中有三列,“ agent_time”,“ agent_timezone”和“ customer_timezone”。 我想派生一个名为“ customer_time”的新列
这是我的数据框的样子,
agent_timezone agent_time customer_timezone
``PST''13:50``EST''
'PST'15:50''CST'
注意:
1.代理时区始终为“ PST”
2.客户时区的可能值是
1. PST
2. CST
3. EST
4. MST
3。 agent_time在6:00到16:00之间
我希望如何使结果数据框看起来像
agent_timezone agent_time customer_timezone customer_time
``PST''13:50``EST''EST 16:50
``PST''15:50``CST''17:50
请帮助!