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
C:\Python27\lib\site-packages\pandas\io\pytables.pyc in func(_start, _stop)
449 # what we are actually going to do for a chunk
450 def func(_start, _stop):
--> 451 return s.read(where=where, start=_start, stop=_stop, columns=columns, **kwargs)
452
453 if iterator or chunksize is not None:
C:\Python27\lib\site-packages\pandas\core\internals.pyc in _find_block(self, item)
1933
1934 def _find_block(self, item):
-> 1935 self._check_have(item)
1936 for i, block in enumerate(self.blocks):
1937 if item in block:
C:\Python27\lib\site-packages\pandas\core\internals.pyc in _check_have(self, item)
1940 def _check_have(self, item):
1941 if item not in self.items:
-> 1942 raise KeyError('no item named %s' % com.pprint_thing(item))
1943
1944 def reindex_axis(self, new_axis, method=None, axis=0, copy=True):
KeyError: u'no item named None'
I am at a loss. What does that mean? I successfully saved the DataFrame but I cannot read it back.
The text was updated successfully, but these errors were encountered:
Never mind. One of the columns of the MultiIndex was not named, i.e. it had None as a name. Apparently HDFStore chokes on that. If so, you guys might want to raise an exception when we try to save a frame like that.
I am at a loss. What does that mean? I successfully saved the DataFrame but I cannot read it back.
The text was updated successfully, but these errors were encountered: