Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by cmdlinetips.com #
 
PREVIOUS NEXT
Tagged: #add #existing #field #pandas #dataframe #checking #conditions
ADD COMMENT
Topic
Name
4+4 =