2014-05-18 128 views
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'>

回答

0

這似乎已涉及到我已經設置爲我display.max_rows設置爲 「無」。當我恢復到默認值60時,我可以在列上做groupby。

+0

此問題(在ma​​x_rows設置中爲None),固定爲0.14.0(0.14rc1爲out,FYI):https://github.com/pydata/pandas/releases – Jeff

相關問題