I got a key error about calling a dataframe.
dist1=pd.read_csv(file1,sep="\s+")
dist1.astype(int)
dist1.columns.astype(int)
I call dist1
with no error. I try to call dist1[3][4]
but it gives key error. Why? I couldn't find the solution. For my problem i need to call dist1[x][y]
for further configuration. Where did it go wrong? Thanks.