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
import pandas as pd import feather df1 = pd.DataFrame([1,2,3,1,2,4], columns=['a']) df1.a = df1.a.astype('category') print(df1.a.unique()) df1.to_feather('a.feather') df1 = feather.read_dataframe('a.feather') df1.a.unique()
The text was updated successfully, but these errors were encountered:
What version of pandas? This works for me on master (thats' why we ask you to fill out the issue template).
Sorry, something went wrong.
This is fixed by #21688 which is not in a released version yet.
Great, thanks @xhochy.
No branches or pull requests
Code Sample, a copy-pastable example if possible
The text was updated successfully, but these errors were encountered: