我有熊貓以下數據幀...AttributeError的:「功能」對象有沒有屬性「和」大熊貓
+-----------------------+
| | count |
+-----------------------+
| group | |
+-----------------------+
| 11- | 99435 |
+-----------------------+
| Bachelor+ | 64900 |
+-----------------------+
| Just 12 | 162483 |
+-----------------------+
| Some College | 61782 |
+-----------------------+
我想執行以下代碼,但我得到一個錯誤.. 。
death_2013['percent_of_total'] = death_2013.count.apply(
lambda x: (x/death_2013.count.sum()))
,我發現了以下錯誤......
AttributeError: 'function' object has no attribute 'apply'
我檢查了death_2013.dtypes
和count
是一個int64。我無法弄清楚代碼有什麼問題。
count是列名稱。我可以做'death_2013.count.apply'或'death_2013 ['count']。apply',但它們都不起作用。奇怪的是,我有這一行代碼使用不同的數據集。 – Gilbert
錯誤信息提示它是函數對象 –
爲什麼不''death_2013 ['count']。apply()'? OMG !!! –