Answers for "pandas copy dataframe with some columns"

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.filter(['A','B','D'], axis=1)
Posted by: Guest on March-02-2020
0

pandas copy data from a column to another

df = pd.DataFrame()

df['X'] = [0, 3, 1, 1, 2, 2, 3, 3, 1, 2]
df['Y'] = [111.0, np.nan, np.nan, 112, 113, np.nan, 114, 115, np.nan, 116]

df['Y'] = df['Y'].fillna(df['X'])

print(df)
Posted by: Guest on February-10-2020

Code answers related to "pandas copy dataframe with some columns"

Python Answers by Framework

Browse Popular Code Answers by Language