Answers for "create new column pandas from other dataframe column"

1

pandas create column from another column

# Creates a new column 'blue_yn' based on the existing 'color' column
# If the 'color' column value is 'blue' then the new column value is 'YES'
df['blue_yn'] = np.where(df['color'] == 'blue', 'YES', 'NO')
# Can also do this using .apply and a lambda function
df['blue_yn']= df['color'].apply(lambda x: 'YES' if (x == 'blue') else 'NO')
Posted by: Guest on August-15-2021
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 "create new column pandas from other dataframe column"

Python Answers by Framework

Browse Popular Code Answers by Language