-
Notifications
You must be signed in to change notification settings - Fork 29k
[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 | ||
|
|
||
|
||
| 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.