Answers for "in np.where if condition is true change another column data"

5

make a condition statement on column pandas

df['color'] = ['red' if x == 'Z' else 'green' for x in df['Set']]
Posted by: Guest on May-12-2020
1

add a value to an existing field in pandas dataframe after checking conditions

# Create a new column called based on the value of another column
# np.where assigns True if gapminder.lifeExp>=50 
gapminder['lifeExp_ind'] = np.where(gapminder.lifeExp >= 50, True, False)
gapminder.head(n=3)
Posted by: Guest on September-18-2020

Code answers related to "in np.where if condition is true change another column data"

Python Answers by Framework

Browse Popular Code Answers by Language