Converts an HCL dataframe to a Pandas dataframe.

HCL_dataframe_name.to_pandas(in_place = True|False)
Name Description

in_place = True | False

optional

  • True Creates a Pandas dataframe that remains associated with the same data set as the HCL dataframe
  • False Creates a Pandas dataframe and data set that are separate copies of the HCL dataframe and data set

If you omit the parameter, False is used.

Pandas dataframe.

Convert the join_result HCL dataframe to a Pandas dataframe

join_result_pandas = join_result.to_pandas()