有条件合并阵列
我有这样的数据框:
column_1 column_2 column_3
[1,3] [2] 2
[1,2,3] null 1
[3,4] [6] 1
如果不是null和del column_2,我想将列_2的值附加到column_1。
所需的输出:
column_1 column_3
[1,3,2] 2
[1,2,3] 1
[3,4,6] 1
I have dataframe like this:
column_1 column_2 column_3
[1,3] [2] 2
[1,2,3] null 1
[3,4] [6] 1
I want to append the value of column_2 to column_1 if it's not null and del column_2.
Desired output:
column_1 column_3
[1,3,2] 2
[1,2,3] 1
[3,4,6] 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
array_union
union column_1array_union