Answers for "how to specify columns to show in pandas"

1

select columns to include in new dataframe in python

new = old.filter(['A','B','D'], axis=1)
Posted by: Guest on March-02-2020
0

select columns to include in new dataframe in python

new = old[['A', 'C', 'D']].copy()
Posted by: Guest on March-02-2020

Code answers related to "how to specify columns to show in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language