How can I remove the index column from a dataframe loaded by Pandas?
I have tried this:
df_total = pd.read_csv(" ... ", index_col=False]),
but Pandas continues to add automatically an index column on the left.
What don't you like about it? Do you not like seeing it when it's printed out? Do you hate that pandas is keeping track of row positions? What is it you are trying to do such that a dataframe having an index gets in the way.
Pandas always keeps track of an index column as said above. If you want to have access to the underlying data of the pandas dataframe consider df.values, where df is a dataframe instance. This returns the data without any index column as a numpy array.
pandasis keeping track of row positions? What is it you are trying to do such that a dataframe having an index gets in the way.df.values, wheredfis a dataframe instance. This returns the data without any index column as a numpy array.