pandas read_csv ignore unnamed columns
pd.read_csv(file_name, index_col=0)
pandas read_csv ignore unnamed columns
pd.read_csv(file_name, index_col=0)
unnamed 0 pandas
# credit to Stack Overflow user in source link
import pandas as pd
pd.read_csv(path_to_csv, index_col=0)
drop unamed columns in pandas
df = df.loc[:, ~df.columns.str.contains('^Unnamed')]
In [162]: df
Out[162]:
colA ColB colC colD colE colF colG
0 44 45 26 26 40 26 46
1 47 16 38 47 48 22 37
2 19 28 36 18 40 18 46
3 50 14 12 33 12 44 23
4 39 47 16 42 33 48 38
pandas read csv unamed:o
pd.read_csv(file_name, index_col=0)
get rid of unnamed column pandas
df.to_csv(path, index=False)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us