Ask Your Question
0

How to drop rows according to a specific numerical column entry

asked 4 years ago

Cyrille gravatar image

updated 4 years ago

I ask the following question which is more pure Python than Sage, since I am mixing both.

I have a dataframe and one column looks like that

image description

I would like to keep only the non rows or to drop the numeric ones. I have not found a way to do that in Pandas. As you see the numerical values can change --- in the contrary it would be easy.

When I try something like

feuille_utilise[feuille_utilise['Entreprise liée'].str.contains("non")]

I obtain the following message

Cannot mask with non-boolean array containing NA / NaN values

Preview: (hide)

Comments

Please add a (small) self-contained example code, always.

rburing gravatar imagerburing ( 4 years ago )

Your data seem to come from R (Neither Python nor Sage have native "dataframe" structrure). Why not use R for handling this task ? This can be done from Sage : have a look at the R interface...

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 4 years ago )

no my data comes from excel

Cyrille gravatar imageCyrille ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

Sébastien gravatar image

The syntax to filter rows of a dataframe in pandas is the following:

feuille_utilise[feuille_utilise['Entreprise liée'] == "non"]
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 333 times

Last updated: Jun 24 '20