我先删掉'SPID'这一列,然后通过.head()显示一下数据框的前几列
df = df.drop('SPID', axis=1, inplace=True)
df.head()
但是报错了,报错信息如下
AttributeError: 'NoneType' object has no attribute 'head'
网上没查到原因,有谁知道这个bug是什么情况的吗?
1个回答
是drop里的inplace的方式用错了,要么
df.drop('SPID', axis=1, inplace=True)
或者
df = df.drop('SPID', axis=1)