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

  • 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.

Returns

Pandas dataframe.

Examples

Convert the join_result HCL dataframe to a Pandas dataframe

join_result_pandas = join_result.to_pandas()