Closed
Description
@bmoscon I think this is due to another versioning issue in Arctic.
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
arctic/multi_index.py:126: in insert_at
return multi_index_insert_row(df, [sample_date, observed_dt], values)
arctic/multi_index.py:118: in multi_index_insert_row
return df.sortlevel()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = OPEN CLOSE
sample_dt observed_dt ...00:00:00.000000 4.1 40.1
2014-01-03 2019-01-28 12:34:30.317360 9.0 90.0
name = 'sortlevel'
def __getattr__(self, name):
"""After regular attribute access, try looking up the name
This allows simpler access to columns for interactive use.
"""
# Note: obj.x will always call obj.__getattribute__('x') prior to
# calling obj.__getattr__('x').
if (name in self._internal_names_set or name in self._metadata or
name in self._accessors):
return object.__getattribute__(self, name)
else:
if self._info_axis._can_hold_identifiers_and_holds_name(name):
return self[name]
> return object.__getattribute__(self, name)
E AttributeError: 'DataFrame' object has no attribute 'sortlevel'
../../../virtualenv/python2.7.14/lib/python2.7/site-packages/pandas/core/generic.py:5057: AttributeError```