Re: [I] Add DataFrame transform function [datafusion-python]

2024-09-02 Thread via GitHub
andygrove closed issue #807: Add DataFrame transform function URL: https://github.com/apache/datafusion-python/issues/807 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To uns

Re: [I] Add DataFrame transform function [datafusion-python]

2024-08-19 Thread via GitHub
timsaucer commented on issue #807: URL: https://github.com/apache/datafusion-python/issues/807#issuecomment-2296641509 It might be as easy as ``` def transform(self, func: Callable[..., DataFrame], *args: Any) -> DataFrame: return func(self, args) ``` Seem

[I] Add DataFrame transform function [datafusion-python]

2024-08-13 Thread via GitHub
timsaucer opened a new issue, #807: URL: https://github.com/apache/datafusion-python/issues/807 **Is your feature request related to a problem or challenge? Please describe what you are trying to do.** Add a function akin to `DataFrame.transform` from pyspark. This gives an easy to u