标签: python pandas dataframe join merge
我有两个要加入的数据框,但我不希望新的df包含所有列。如何只选择几列?
例如:
df1.columns = ['a', 'b', 'c', 'd'] df2.columns = ['a', 'e', 'f', 'g', 'k', 'j', 'h', 'p', 'o']
我想同时拥有两者:
df3.columns = ['a', 'b', 'c', 'd', 'e', 'f', 'p']
答案 0 :(得分:0)
首先使用concat合并数据帧
然后使用
df3 = df3['a','b','c','d','e','f','p']