How to Remove a Row From a Data Frame in Pandas (Python)

Опубликовано: 12 Октябрь 2024
на канале: DataDaft
22,685
253

This video shows how to delete rows Data Frames in the Pandas library for Python.

If you find this video useful, like, share and subscribe to support the channel!
► Subscribe: https://www.youtube.com/c/DataDaft?su...


Code used in this Python Code Clip:

import pandas as pd

import statsmodels.api as sm #(To access mtcars dataset)
mtcars = sm.datasets.get_rdataset("mtcars", "datasets", cache=True).data

mtcars.head()

Delete rows by name with df.drop()

mtcars = mtcars.drop(["Mazda RX4 Wag"], # Rows to drop
axis = 0) # 0 for rows

mtcars.head()

Delete rows by index

mtcars = mtcars.drop(mtcars.index[[0,2]], # Rows indicies to drop
axis = 0) # 0 for rows

mtcars.head()


Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones. .


⭐ Kite is a free AI-powered coding assistant that integrates with popular editors and IDEs to give you smart code completions and docs while you’re typing. It is a cool application of machine learning that can also help you code faster! Check it out here: https://www.kite.com/get-kite/?utm_me...