Since today I have a problem with dataframe slicing with python (3.8.):
I use a large dataframe df (shape 25000, 1500)
When I used pandas series slicing ( df["No"] ) I got
No | |
---|---|
null | null |
null | null |
null | null |
null | null |
when I use dataframe slicing ( df[["No"]] ) I got correctly
No | |
---|---|
0 | C_1 |
1 | C_2 |
2 | C_3 |
3 | C_4 |
Does anybody know what happened (e.g., what may have changed)?