-
Notifications
You must be signed in to change notification settings - Fork 29.3k
[SPARK-24392][PYTHON] Label pandas_udf as Experimental #21435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
376149a
fb05282
0bce522
a1e70aa
38a765d
f977293
84b52f3
6b87330
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2448,6 +2448,8 @@ def udf(f=None, returnType=StringType()): | |
| @since(2.3) | ||
| def pandas_udf(f=None, returnType=None, functionType=None): | ||
| """ | ||
| .. note:: Experimental | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @BryanCutler, can we add a short node for createDataFrame and to Pandas with Pandas DataFrame input/output?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I could have sworn that was added before but I don't see it anywhere. Would it make sense to add the note to the SQLconf description?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Anywhere is fine IMHO if it looks making sense. Another option is things like: I just wanted to make sure this feature is experimental.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. BTW, don't forget to update
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trying to add the note under |
||
| Creates a vectorized user defined function (UDF). | ||
|
|
||
| :param f: user-defined function. A python function if used as a standalone function | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not a big deal but can we put this right before doctest just for consistency?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, it was hard to find a consistent place to put it. I changed this one to be after the param definitions, before doctest. hopefully that's better.