Metodo to_pandas()

Converte un dataframe HCL in un dataframe Pandas.

Sintassi

HCL_dataframe_name.to_pandas(in_place = True|False)

Parametri

Nome Descrizione

in_place = True | False

facoltativo

  • Vero: crea un dataframe Pandas che rimane associato allo stesso set di dati del dataframe HCL.
  • Falso: crea un dataframe e un set di dati Pandas che sono copie separate del dataframe e del set di dati HCL.

Se si omette il parametro, viene utilizzato Falso.

Restituisce

Dataframe Pandas.

Esempi

Convertire il dataframe HCL join_result in un dataframe Pandas

join_result_pandas = join_result.to_pandas()