MCPcopy
hub / github.com/pandas-dev/pandas / to_dict

Method to_dict

pandas/core/series.py:1747–1749  ·  view source on GitHub ↗
(
        self, *, into: type[MutableMappingT] | MutableMappingT
    )

Source from the content-addressed store, hash-verified

1745
1746 @overload
1747 def to_dict(
1748 self, *, into: type[MutableMappingT] | MutableMappingT
1749 ) -> MutableMappingT: ...
1750
1751 @overload
1752 def to_dict(self, *, into: type[dict] = ...) -> dict: ...

Callers 15

setupMethod · 0.95
test_mapFunction · 0.95
time_to_dict_intsMethod · 0.45
setupMethod · 0.45
to_dictFunction · 0.45
_process_dataframeMethod · 0.45
obj_to_writeMethod · 0.45
test_dataframeMethod · 0.45
test_to_dictMethod · 0.45

Calls 3

itemsMethod · 0.95
is_object_dtypeFunction · 0.90
maybe_box_nativeFunction · 0.90