Selecting multiple columns in a pandas dataframe

后端 未结 19 1801
醉话见心
醉话见心 2020-11-22 00:08

I have data in different columns but I don\'t know how to extract it to save it in another variable.

index  a   b   c
1      2   3   4
2      3   4   5
         


        
19条回答
  •  时光说笑
    2020-11-22 00:35

    You can use pandas.DataFrame.filter method to either filter or reorder columns like this:

    df1 = df.filter(['a', 'b'])
    

    This is also very useful when you are chaining methods.

提交回复
热议问题