想合并dataframe1和dataframe2变成dataframe3
dataframe1:
name A B C label
test1 1 2 2 1
test2 11 10 9 2
dataframe2:
name B A D label
test3 3 2 1 UNKONWN
dataframe3:
name A B C D label
test1 1 2 2 0 1
test2 11 10 9 0 2
test3 2 3 0 1 UNKONWN
把dataframe2中的数据加到dataframe1的最后一行。
dataframe1中存在,但dataframe2中不存在的列C:test3的值为0
dataframe2中存在,但dataframe1中不存在的列D:test1,2的值为0
请求高手指点。