to_pandas() method
Converts an HCL dataframe to a Pandas dataframe.
Syntax
HCL_dataframe_name.to_pandas(in_place = True|False)
Parameters
Name | Description |
---|---|
in_place = True | False optional |
If you omit the parameter, False is used. |
Returns
Pandas dataframe.
Examples
Convert the join_result HCL dataframe to a Pandas dataframe
join_result_pandas = join_result.to_pandas()