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
After #7917 still some errors in the categorical docs:
df.to_hdf(hdf_file, "frame")
TypeError: objects of type ``Categorical`` are not supported in this context, sorry
pd.read_hdf(hdf_file, "frame")
df.ix["h":"j",0:1]
AttributeError: 'DataFrame' object has no attribute '_is_view'
The text was updated successfully, but these errors were encountered:
hmm
2nd is a non tested case (and buggy)
1st is correct - I made this raise TypeError for now
maybe just say this is not supported at the moment
Sorry, something went wrong.
I take that back
this needs format='table' and it will coerce
will fix
Is my second bullet point also fixed with that PR?
ah, yes, nevermind, I see it is in the tests
yep that was a subtl bug
Successfully merging a pull request may close this issue.
After #7917 still some errors in the categorical docs:
df.to_hdf(hdf_file, "frame")
gives aTypeError: objects of type ``Categorical`` are not supported in this context, sorry
(http://pandas-docs.github.io/pandas-docs-travis/categorical.html#getting-data-in-out). Alsopd.read_hdf(hdf_file, "frame")
gives an error.df.ix["h":"j",0:1]
gives aAttributeError: 'DataFrame' object has no attribute '_is_view'
(http://pandas-docs.github.io/pandas-docs-travis/categorical.html#getting)The text was updated successfully, but these errors were encountered: