You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3790, in describe
numdata = self._get_numeric_data()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\generic.py", line 1894, in _get_numeric_data
self._data.get_numeric_data()).finalize(self)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2596, in get_numeric_data
return self.get_data(**kwargs)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2610, in get_data
return self.combine(blocks)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2624, in combine
return self.class(new_blocks, new_axes, do_integrity_check=False)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in init
self._set_ref_locs(do_refs=True)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2189, in _set_ref_locs
rl[loc] = (block, i)
IndexError: list assignment index out of range
pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).info()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 1443, in info
counts = self.count()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3862, in count
result = notnull(frame).sum(axis=axis)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 273, in notnull
res = isnull(obj)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 125, in isnull
return _isnull(obj)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 137, in _isnull_new
return obj._constructor(obj._data.apply(lambda x: isnull(x.values)))
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2384, in apply
do_integrity_check=do_integrity_check)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in init
self._set_ref_locs(do_refs=True)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2177, in _set_ref_locs
'have _ref_locs set' % (block, labels))
AssertionError: Cannot create BlockManager._ref_locs because block [BoolBlock: [a, a], 2 x 1, dtype: bool] with duplicate items [Index(['a', 'b', 'a'], dtype='object')] does not have _ref_locs set
Note that there are multiple ways to avoid the error:
not having duplicate column names
changing the type of column "b" or deleting it!
In my program I had duplicate names only accidently, but still this behaviour and dependence on the non-duplicate column looks like a bug to me.
The text was updated successfully, but these errors were encountered:
The following throws a very confusing error (pandas 0.13.1):
pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).describe()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3790, in describe
numdata = self._get_numeric_data()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\generic.py", line 1894, in _get_numeric_data
self._data.get_numeric_data()).finalize(self)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2596, in get_numeric_data
return self.get_data(**kwargs)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2610, in get_data
return self.combine(blocks)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2624, in combine
return self.class(new_blocks, new_axes, do_integrity_check=False)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in init
self._set_ref_locs(do_refs=True)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2189, in _set_ref_locs
rl[loc] = (block, i)
IndexError: list assignment index out of range
pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).info()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 1443, in info
counts = self.count()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3862, in count
result = notnull(frame).sum(axis=axis)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 273, in notnull
res = isnull(obj)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 125, in isnull
return _isnull(obj)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 137, in _isnull_new
return obj._constructor(obj._data.apply(lambda x: isnull(x.values)))
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2384, in apply
do_integrity_check=do_integrity_check)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in init
self._set_ref_locs(do_refs=True)
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2177, in _set_ref_locs
'have _ref_locs set' % (block, labels))
AssertionError: Cannot create BlockManager._ref_locs because block [BoolBlock: [a, a], 2 x 1, dtype: bool] with duplicate items [Index(['a', 'b', 'a'], dtype='object')] does not have _ref_locs set
Note that there are multiple ways to avoid the error:
In my program I had duplicate names only accidently, but still this behaviour and dependence on the non-duplicate column looks like a bug to me.
The text was updated successfully, but these errors were encountered: