TIL
Data Handling | pandas dataframe
홍차23
2021. 1. 5. 12:14
# 인덱스가 이미 있는 csv 파일인 경우 - if the first column in the CSV file has index values
df2 = pd.read_csv('train.csv', index_col=0)