Answers for "remove row if contain pandas"

2

how to reomve certain row from dataframe pandas

# delete 10th, 11th, and 15th row of df, axis = 0 signify rows, inplace=True means changes directly going to apply to df.
df.drop(labels=[10, 11, 15], axis=0, inplace=True)
# or
df = df.drop(labels=10, axis=0)

# don't forget to upvote :)
Posted by: Guest on September-05-2021
0

Pandas: How to Drop Rows that Contain a Specific String in 2 columns

df[df["team"].str.contains("A|B")==False]

	team	conference   points
5	C	East	     5
Posted by: Guest on December-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language