pandas.Series.to_dict #

系列。to_dict ( * , into=<class 'dict'> ) [来源] #

将 Series 转换为 {label -> value} 字典或类似字典的对象。

参数
进入类,默认字典

用作返回对象的 collections.abc.MutableMapping 子类。可以是实际的类,也可以是所需映射类型的空实例。如果你想要一个collections.defaultdict,你必须对其进行初始化。

返回
collections.abc.MutableMapping

系列的键值表示。

例子

>>> 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(into=OrderedDict)
OrderedDict([(0, 1), (1, 2), (2, 3), (3, 4)])
>>> dd = defaultdict(list)
>>> s.to_dict(into=dd)
defaultdict(<class 'list'>, {0: 1, 1: 2, 2: 3, 3: 4})