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

Channel:
Subscribers:
54,000
Published on ● Video Link: https://www.youtube.com/watch?v=yRnoP-8zP2I



Duration: 2:36
727 views
29


This video shows 3 ways to remove columns from 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?sub_confirmation=1


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 by column by name

del mtcars["cyl"]

mtcars.head()

# Delete columns by name with df.drop()

mtcars = mtcars.drop(["hp", "carb"], # Cols to drop
axis = 1) # 1 for columns

mtcars.head()

# Delete columns by index position with df.drop()

mtcars = mtcars.drop(mtcars.columns[[1,3]], # Index of cols to drop
axis = 1) # 1 for columns

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_medium=referral&utm_source=youtube&utm_campaign=datadaft&utm_content=description-only







Tags:
remove a column from a data frame in python
remove a column from a data frame in pandas
pandas dataframes
learn pandas
pandas
python
python dataframes
delete a column from a data frame in pandas
pandas remove columns
pandas delete columns
remove column from data frame
delete column from data frame
delete from data frame
delete from dataframes
remove columns
delete columns
pandas drop columns
df.drop
df.drop()
pandas basics
pandas delete variables