Answers for "how to build a dataframe with columns from another dataframe"

4

python create new pandas dataframe with specific columns

# Basic syntax:
new_dataframe = old_dataframe.filter(['Columns','you','want'], axis=1)
Posted by: Guest on November-06-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 build a dataframe with columns from another dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language