Answers for "replace only new conditions pandas"

1

pandas conditional replace values in a series

# 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
1

pandas replace values based on condition

df.loc[df['First Season'] > 1990, 'First Season'] = 1
Posted by: Guest on May-23-2021

Code answers related to "replace only new conditions pandas"

Python Answers by Framework

Browse Popular Code Answers by Language