We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32cd67d commit c13b819Copy full SHA for c13b819
doc/source/user_guide/user_defined_functions.rst
@@ -1,4 +1,4 @@
1
-.. _user_defined_functions:
+.. _udf:
2
3
{{ header }}
4
@@ -291,7 +291,7 @@ functions.
291
def highest_jump(column):
292
return column.pct_change().max()
293
294
- temperature.apply(highest_jump)
+ temperature.agg(highest_jump)
295
296
297
When to use: Use :meth:`agg` for performing custom aggregations, where the operation returns
0 commit comments