Answers for "keep only certain rows pandas"

7

only keep rows of a dataframe based on a column value

df.loc[df['column_name'] == some_value]
Posted by: Guest on April-13-2020
3

only keep rows of a dataframe based on a column value

df.loc[(df['column_name'] >= A) & (df['column_name'] <= B)]
Posted by: Guest on April-17-2020
0

select only some rows pandas

df.loc[df['column_name'].isin(some_values)]
Posted by: Guest on April-23-2020

Code answers related to "keep only certain rows pandas"

Python Answers by Framework

Browse Popular Code Answers by Language