to_pandas() 方法

将 HCL 数据帧转换为 Pandas 数据帧。

语法

HCL 数据帧名称.to_pandas(in_place = True|False)

参数

名称 描述

in_place = True | False

可选

  • True 创建一个仍然与和 HCL 数据帧相同的数据集相关联的 Pandas 数据帧
  • False 创建作为 HCL 数据帧和数据集的单独副本的 Pandas 数据帧和数据集

如果您省略该参数,则使用 False

返回

Pandas 数据帧。

示例

将 join_result HCL 数据帧转换为 Pandas 数据帧

join_result_pandas = join_result.to_pandas()