Answers for "pandas assign value to column based on condition"

9

change pandas column value based on condition

In [41]:
df.loc[df['First Season'] > 1990, 'First Season'] = 1
df

Out[41]:
                 Team  First Season  Total Games
0      Dallas Cowboys          1960          894
1       Chicago Bears          1920         1357
2   Green Bay Packers          1921         1339
3      Miami Dolphins          1966          792
4    Baltimore Ravens             1          326
5  San Franciso 49ers          1950         1003
Posted by: Guest on May-14-2020
1

set value based on column

df.loc[df['c1'] == 'Value', 'c2'] = 10
Posted by: Guest on July-30-2020
0

create a new column in pandas and assign value with conditions

# create a list of our conditions
conditions = [
    (df['likes_count'] <= 2),
    (df['likes_count'] > 2) & (df['likes_count'] <= 9),
    (df['likes_count'] > 9) & (df['likes_count'] <= 15),
    (df['likes_count'] > 15)
    ]

# create a list of the values we want to assign for each condition
values = ['tier_4', 'tier_3', 'tier_2', 'tier_1']

# create a new column and use np.select to assign values to it using our lists as arguments
df['tier'] = np.select(conditions, values)

# display updated DataFrame
df.head()
Posted by: Guest on October-19-2020

Code answers related to "pandas assign value to column based on condition"

Python Answers by Framework

Browse Popular Code Answers by Language