Posts by Marcos Ferreira • 11 points
1 post
-
1
votes1
answer37
viewsA: Drop values from a dataframe based on a boolean value
It is possible to perform this task without using drop, selected the lines of interest. ufo = ufo[ufo["Shape Reported "] != "OTHER"] Thus the new Ufo will have all lines, except those that contain…