-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
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
ENH: Set default storage for strings globaly #44203
Comments
Are you asking about using the StringArray by default when creating DataFrames or about using the setting the storage for StringArrays? |
Yes that and the ability to infer string as
|
Hmmm. I don't think we have a way to specify to infer the string datatype in the dataframe constructor. |
There is |
Is your feature request related to a problem?
As far as I know, the only way to use the new string dtypes, is to set them manually either via the param
dtype
if it's supported or usingastype
otherwise the string will be stored asobject
.Describe the solution you'd like
I'm aware that the string dtype is experimental, but it would be easy for us to play with it in large projects if there's a way to change the default behavior globally which can also be used in the future to set the storage for
StringDtype
.The text was updated successfully, but these errors were encountered: