Predictive Hacks

How to Move a Column to be the Last in Pandas

Sometimes, we want the “Target” column to be the last one in the Data Frame. Let’s see how we can do it in Pandas. Assume that we have the following data frame:

import pandas as pd

df = pd.DataFrame({'A':[1,2,3],
              'Target':[0,1,0],
              'B':[4,5,6]})

df

Now, we can reindex the columns as follows:

df = df.reindex(columns = [col for col in df.columns if col != 'Target'] + ['Target'])
df

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