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