Read Delta Table with Pandas

User16830818524
Databricks Employee
Databricks Employee

Is it possible to read a Delta table directly into a Pandas Dataframe?

aladda
Databricks Employee
Databricks Employee

You'd have convert a delta table to pyarrow and then use to_pandas. See https://databricks.com/blog/2020/12/22/natively-query-your-delta-lake-with-scala-java-and-python.htm... for details

# Create a Pandas Dataframe by initially converting the Delta Lake

# table into a PyArrow table

df = dt.to_pyarrow_table().to_pandas()