Answers for "select a row with a valuein pandas"

6

how to select rows based on column value pandas

df.loc[df['column_name'] == some_value]
Posted by: Guest on November-23-2020
1

Select rows from a DataFrame based on column values?

#To select rows whose column value equals a scalar, some_value, use ==:
df.loc[df['A'] == 'foo']

#To select rows whose column value is in an iterable, some_values, use isin:
df.loc[df['B'].isin(['one','three'])]

#Combine multiple conditions with &:
df.loc[(df['column_name'] >= A) & (df['column_name'] <= B)]
Posted by: Guest on November-23-2021

Code answers related to "select a row with a valuein pandas"

Browse Popular Code Answers by Language