用法:
class pandas.StringDtype(storage=None)
字符串数据的扩展 dtype。
警告
StringDtype 被认为是实验性的。 API 的实现和部分可能会在没有警告的情况下更改。
特别是, StringDtype.na_value 可能会更改为不再是
numpy.nan
。- storage:{“python”, “pyarrow”},可选
如果未给出,则为
pd.options.mode.string_storage
的值。
参数:
例子:
>>> pd.StringDtype() string[python]
>>> pd.StringDtype(storage="pyarrow") string[pyarrow]
相关用法
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.repeat用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.update用法及代码示例
- Python pandas.Series.iat用法及代码示例
- Python pandas.Series.divide用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.StringDtype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。