We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v 0.12.0
cols = pd.MultiIndex.from_tuples([(1,2), (3,4)]) data = pd.DataFrame(index=[1,2,3], columns=cols, dtype=float) data.values.fill(0.)
s = store('/tmp/test', mode='a') s.append('mi_frame', data)
reloaded = s['mi_frame'] # also applies to s.select... print type(data.columns) Out: pandas.core.index.MultiIndex
print type(reloaded.columns) Out: pandas.core.index.Index
It's easy enough to re-convert upon reload, but would be nice not to have to
The text was updated successfully, but these errors were encountered:
this was closed by #3749 for issue #3748 thanks for the report!
Sorry, something went wrong.
so it works in master / 0.13
No branches or pull requests
v 0.12.0
cols = pd.MultiIndex.from_tuples([(1,2), (3,4)])
data = pd.DataFrame(index=[1,2,3], columns=cols, dtype=float)
data.values.fill(0.)
s = store('/tmp/test', mode='a')
s.append('mi_frame', data)
reloaded = s['mi_frame'] # also applies to s.select...
print type(data.columns)
Out: pandas.core.index.MultiIndex
print type(reloaded.columns)
Out: pandas.core.index.Index
It's easy enough to re-convert upon reload, but would be nice not to have to
The text was updated successfully, but these errors were encountered: