Answers for "how to create a new df with values from another df col"

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
1

create new dataframe with columns from another dataframe pandas

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

Python Answers by Framework

Browse Popular Code Answers by Language