Predictive Hacks

How to get the Column Index from Column Name in Pandas

We can get the column location, i.e. the column index of a Pandas data frame by column name using the columns.get_loc method. For example.

import pandas as pd

df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C' : [7, 8, 9]})

df

Let’s get the location of column ‘B’.

df.columns.get_loc('B')
1

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.

Python

Intro to Chatbots with HuggingFace

In this tutorial, we will show you how to use the Transformers library from HuggingFace to build chatbot pipelines. Let’s