to_pandas() 方法
将 HCL 数据帧转换为 Pandas 数据帧。
语法
HCL 数据帧名称.to_pandas(in_place = True|False)
参数
名称 | 描述 |
---|---|
in_place = True | False 可选 |
如果您省略该参数,则使用 False。 |
返回
Pandas 数据帧。
示例
将 join_result HCL 数据帧转换为 Pandas 数据帧
join_result_pandas = join_result.to_pandas()