python filter column by value
df.loc[df['column_name'] == some_value]
python filter column by value
df.loc[df['column_name'] == some_value]
only keep rows of a dataframe based on a column value
df.loc[(df['column_name'] >= A) & (df['column_name'] <= B)]
pandas filter rows by value
# does year equals to 2002?
# is_2002 is a boolean variable with True or False in it
>is_2002 = gapminder['year']==2002
>print(is_2002.head())
0 False
1 False
2 False
3 False
4 False
# filter rows for year 2002 using the boolean variable
>gapminder_2002 = gapminder[is_2002]
>print(gapminder_2002.shape)
(142, 6)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us