Dataframe not showing in Pycharm

后端 未结 10 1426
旧时难觅i
旧时难觅i 2020-12-30 18:09

I am using PyCharm 2016.2.1 . When I try to view a Pandas dataframe through the newly added feature \'View as DataFrame\' in the debugger, this works as expected for a small

10条回答
  •  没有蜡笔的小新
    2020-12-30 18:52

    In my situation, the problem is caused by two same cloumn name in my dataframe. Check it by:df.columns.shape[0] == len(set(df.columns))

提交回复
热议问题