Quantcast
Channel: Planet Python
Viewing all articles
Browse latest Browse all 24352

Ben Cook: The easiest way to rename a column in pandas

$
0
0
Given a DataFrame df with columns ["date", "region", "revenue"], you can rename the “revenue” column to “sales” by passing a mapping to the .rename() method: import pandas as pd df = pd.read_csv("https://jbencook.com/data/dummy-sales.csv") df.rename(columns={"revenue": "sales"}, inplace=True) df.columns # Expected result # Index(['date', 'region', 'sales'], dtype='object') This is the easiest way to...

Viewing all articles
Browse latest Browse all 24352

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>