我有一个Pandas属性的数据框。
**Address** | **Added on**. |
15 Smith Close | Added on 17/11/22 |
1 Apple Drive | Reduced on 19/11/22|
27 Pride place | Added on 18/1//22 |
我想将“Added on ...”列中“reduced on ...”的所有示例移动到 Dataframe 中另一个名为“Reduced on”的列。如何执行此操作?
非常感谢。
3条答案
按热度按时间eeq64g8w1#
您可以使用
pd.DataFrame.where
:另一种方法是使用
pd.Series.str.extract
和pd.DataFrame.concat
:knpiaxh12#
拟议代码:
结果:
eqzww0vc3#
这应该也能起作用:
输出: