0
有人看到和/或理解下面的錯誤我在pandas上對列進行value_counts操作時,已驗證只有數字表示爲字符串對象?試圖找出造成這種情況的原因;我第一次見過這個。Python中的 - :'NoneType'和'int'錯誤不受支持的操作數類型
col1
3234
2334
4342
...
df[col1].value_counts()
回報
<repr(<pandas.core.series.Series at 0x819a0d0>) failed: TypeError: unsupported operand type(s) for -: 'NoneType' and 'int'>
此問題(在max_rows設置中爲None),固定爲0.14.0(0.14rc1爲out,FYI):https://github.com/pydata/pandas/releases – Jeff