Answers for "create a dataframe from another dataframe in pd"

3

create new dataframe with columns from another dataframe pandas

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

dataframe from another dataframe

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

Code answers related to "create a dataframe from another dataframe in pd"

Python Answers by Framework

Browse Popular Code Answers by Language