Tuesday, January 12, 2021

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

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...

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...