How to Rename Columns in Pandas DataFrame

preview_player
Показать описание
Here you will learn how to rename columns in Pandas dataframe.

Description:

In this tutorial, I will cover two of the methods that you can use when you need to rename the columns in your dataframe.

First, before renaming the columns, I will give a brief introduction to the different ways to change the names of the columns. After this is done, I will read example data (see link below) and then I will talk a bit about how to use the rename method. The video will continue by showing examples on how to rename 1) a single columns, 2) two columns, and 3) three columns. After that I will also cover how to use the columns method of the dataframe object and how you can use this for renaming all your columns in the dataframe.

Finally, I will show you how to change the column names while reading data from a CSV file. Changing the column names this way can be done by using some of the arguments of the read_csv method. To fully follow this tutorial you need to have Python, Pandas, and Jupyter installed on your computer. Of course, if you prefer to work with Python code in another environment, Jupyter is not needed.

Links related to renaming columns:

If you need to learn more about importing data from CSV files with Pandas:

Social Media Accounts to Follow to Never Miss New Content:

3:21 Importing Pandas
3:40 Reading a CSV File
4:51 The Rename method explained
5:42 Renaming a single column example
6:28 Renaming two columns example
7:01 Renaming three columns example
7:41 Changing name with the columns method
10:13 Rename the columns while reading data
13:02 Conclusion
Рекомендации по теме
Комментарии
Автор

Thanks !!
How can I show just a few columns with a condition value from another column.
Example: My df has 30 columns, and I only want to see: only the rows where col1 has a specific value, then show only col3, col5, col7 and col 20
Thanks for sharing !

CarlosMoreno-vwir