Predictive Hacks

How to read a CSV without the first column in Pandas

Sometimes, the CSV files contain the index as a first column and you may need to skip it when you read the CSV file. You can work like that:

import pandas as pd

df = pd.read_csv("myfile.csv", index_col=0)
df.reset_index(drop=True, inplace=True)

This snippet of code above, sets as index the first column of the CSV file and then it resets the index.

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.