Data Science, Programming

Data Wrangling With Python — Part 2

Useful transformation methods in data science

Amit Chauhan
Towards AI
Published in
6 min readMar 4, 2021

--

Photo by Fotis Fotopoulos on Unsplash

Deleting a Row

We can delete one or more rows from a data frame. With the help of the boolean condition, we can create a new data frame that excludes rows we want to delete.

# Load library
import…

--

--