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
modin.__version__
import pandas.api.types as pt from modin.pandas import Categorical import modin.pandas as pd df = pd.DataFrame(columns = ["a", "b", "c"]) df = df.set_index(["a"]) df["b"] = Categorical(df["b"], ordered=True) print(df["b"]) print(pt.is_categorical_dtype(df["b"]))
When we assign an empty DataFrame column to a Categorical dtype, the data type does not change to Categorical.
The text was updated successfully, but these errors were encountered:
@naren-ponder, I see we have many various problems with Categorical dtype. Could you organize all the related issues we have and link them in an epic?
Sorry, something went wrong.
No branches or pull requests
System information
modin.__version__
): 0.13.2Describe the problem
When we assign an empty DataFrame column to a Categorical dtype, the data type does not change to Categorical.
Source code / logs
The text was updated successfully, but these errors were encountered: