dask.dataframe.DataFrame.to_bag

dask.dataframe.DataFrame.to_bag

DataFrame.to_bag(index=False, format='tuple')[源代码]

从 Dask DataFrame 创建 Dask Bag

参数
索引bool, 可选

如果为 True,元素是 (索引, 值) 的元组,否则它们只是 。默认是 False。

格式{“元组”, “字典”, “帧”}, 可选

是否返回元组包、字典或类似数据框的对象。默认是“tuple”。如果选择“frame”,df 的原始分区将不会以任何方式转换。

示例

>>> bag = df.to_bag()