Answers for "how to drop certain values from a column in pandas"

8

python: remove specific values in a dataframe

df.drop(df.index[df['myvar'] == 'specific_name'], inplace = True)
Posted by: Guest on June-22-2020
1

pandas dataframe remove rows by column value

df = df[df.line_race != 0]
Posted by: Guest on April-07-2020
0

pandas dataframe drop rows with -ve in column value

df = df[df.line_race != 0]
Posted by: Guest on October-29-2020

Code answers related to "how to drop certain values from a column in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language