cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Read Delta Table with Pandas

User16830818524
New Contributor II

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

1 REPLY 1

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()

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now