pandas.StringDtype¶
- class pandas.StringDtype(storage=None)[source]¶
Extension dtype for string data.
New in version 1.0.0.
Warning
StringDtype is considered experimental. The implementation and parts of the API may change without warning.
- Parameters
- storage{“python”, “pyarrow”}, optional
If not given, the value of
pd.options.mode.string_storage
.
Examples
>>> pd.StringDtype() string[python]
>>> pd.StringDtype(storage="pyarrow") string[pyarrow]
Attributes
None
Methods
None