I am trying to load a csv file as a dataframe
import pandas as pd
import numpy as np
# loading csv files
map1 = pd.read_csv('data001.csv')
print(map1)
However, the dataframe's column names are provided from the first's row *.csv file values. Any ideas how can I obtain a dataframe with column names that are sequentially numbered instead?
Thanks!