Feature request: Add collect()
to DataFrame
#19548
Labels
enhancement
New feature or an improvement of an existing feature
reference
Reference issue for recurring topics
Description
So collecting a df is used for lazyframes. However, I sometimes run my code in eager mode, and sometimes in lazymode. However, the amount of if-else and try-except functions i have to make in my code makes it exhausting to switch between eager and lazy mode. I would have prefered not to get an
AttributeError
when runningcollect()
on a eager frame. I can't be the only one wanting this function I believe, or have I missed something?Example:
The text was updated successfully, but these errors were encountered: