用法:
Series.to_dict(into=<class 'dict'>)
将 Series 转换为 {label -> value} dict 或 dict-like 对象。
- into:类,默认字典
用作返回对象的 collections.abc.Mapping 子类。可以是实际类或所需映射类型的空实例。如果你想要一个 collections.defaultdict,你必须把它初始化。
- 集合.abc.映射
系列的键值表示。
参数:
返回:
例子:
>>> s = pd.Series([1, 2, 3, 4]) >>> s.to_dict() {0:1, 1:2, 2:3, 3:4} >>> from collections import OrderedDict, defaultdict >>> s.to_dict(OrderedDict) OrderedDict([(0, 1), (1, 2), (2, 3), (3, 4)]) >>> dd = defaultdict(list) >>> s.to_dict(dd) defaultdict(<class 'list'>, {0:1, 1:2, 2:3, 3:4})
相关用法
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.to_xarray用法及代码示例
- Python pandas.Series.to_markdown用法及代码示例
- Python pandas.Series.to_excel用法及代码示例
- Python pandas.Series.to_numpy用法及代码示例
- Python pandas.Series.to_latex用法及代码示例
- Python pandas.Series.to_json用法及代码示例
- Python pandas.Series.to_hdf用法及代码示例
- Python pandas.Series.to_sql用法及代码示例
- Python pandas.Series.to_frame用法及代码示例
- Python pandas.Series.to_clipboard用法及代码示例
- Python pandas.Series.truediv用法及代码示例
- Python pandas.Series.take用法及代码示例
- Python pandas.Series.tz_localize用法及代码示例
- Python pandas.Series.tail用法及代码示例
- Python pandas.Series.truncate用法及代码示例
- Python pandas.Series.transform用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.to_dict。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。