course
How to Drop Columns in Pandas Tutorial
Learn how to drop columns in a pandas DataFrame.
Aug 18, 2020 · 3 min read
Topics
Pandas Courses
4 hr
5.7M
course
Intermediate Python
4 hr
1.1M
course
Writing Efficient Code with pandas
4 hr
20K
See More
RelatedSee MoreSee More
tutorial
Pandas Drop Duplicates Tutorial
Learn how to drop duplicates in Python using pandas.
DataCamp Team
4 min
tutorial
Python Select Columns Tutorial
Use Python Pandas and select columns from DataFrames. Follow our tutorial with code examples and learn different ways to select your data today!
DataCamp Team
7 min
tutorial
Pandas Add Column Tutorial
You are never stuck with just the data you are given. Instead, you can add new columns to a DataFrame.
DataCamp Team
4 min
tutorial
Pandas Sort Values Tutorial
Learn how to sort rows of data in a pandas Dataframe using the .sort_values() function.
DataCamp Team
4 min
tutorial
Pandas Tutorial: DataFrames in Python
Explore data analysis with Python. Pandas DataFrames make manipulating your data easy, from selecting or replacing columns and indices to reshaping your data.
Karlijn Willems
20 min
tutorial
PySpark: How to Drop a Column From a DataFrame
In PySpark, we can drop one or more columns from a DataFrame using the .drop("column_name") method for a single column or .drop(["column1", "column2", ...]) for multiple columns.
Maria Eugenia Inzaugarat
6 min