by
Thefan
• New Contributor II
- 1056 Views
- 0 replies
- 1 kudos
Greetings !I've been trying out DLT for a few days but I'm running into an unexpected issue when trying to use Koalas dropna in my pipeline.My goal is to drop all columns that contain only null/na values before writing it.Current code is this : @dlt...
- 1056 Views
- 0 replies
- 1 kudos
- 649 Views
- 0 replies
- 1 kudos
I wrote a review of Koalas by porting an existing pandas program. Comments welcome.https://medium.com/@chuck.connell.3/pandas-on-databricks-via-koalas-a-review-9876b0a92541
- 649 Views
- 0 replies
- 1 kudos
- 1985 Views
- 3 replies
- 0 kudos
I have single threaded Pandas code that is both not yet supported by Koalas nor easy to reimplement in PySpark. I would like to distribute this workload using Spark without rewriting all my Pandas code - is this possible?
- 1985 Views
- 3 replies
- 0 kudos
Latest Reply
This is for a specific scenario where the code is not yet supported by Koalas. One approach to consider is using a Pandas UDF, and splitting up the work in a way that allows your processing to move forward. This notebook is a great example of taking ...
2 More Replies
- 2267 Views
- 2 replies
- 0 kudos
Hi I am planning to run Koalas on Databricks environment, What are the requirements for running Koalas there
- 2267 Views
- 2 replies
- 0 kudos
Latest Reply
Koalas is great! This really helps ease the transition from Pandas to Spark, because you can just use the same Pandas functions/classes through the Koalas API but everything runs in the background in Spark.
1 More Replies
- 1256 Views
- 1 replies
- 0 kudos
Can I read a Delta table directly using Koalas or do I need to read using Spark and then convert the Spark dataframe to a Koalas dataframe?
- 1256 Views
- 1 replies
- 0 kudos
Latest Reply
Yes, you can use the "read_delta" function. Documentation.