Answers for "pandas df add value if condition"

1

pandas add flag if value is above certain value

# np.where function works as follows:
import numpy as np

# E.g. 1 - Set column values based on if another column is greater than or equal to 50
df['X'] = np.where(df['Y'] >= 50, 'yes', 'no')

# E.g. 2 - Replace values over 20000 with 0, otherwise keep original value
df['my_value'] = np.where(df.my_value > 20000, 0, df.my_value)
Posted by: Guest on September-01-2021
0

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

gapminder['gdpPercap_ind'] = gapminder.gdpPercap.apply(lambda x: 1 if x >= 1000 else 0)
gapminder.head()
Posted by: Guest on September-18-2020

Code answers related to "pandas df add value if condition"

Python Answers by Framework

Browse Popular Code Answers by Language