Skip to content

Commit

Permalink
docs(udfs): fix udf interlink locations
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and cpcloud committed Oct 6, 2023
1 parent 359fd5e commit c26e48b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ibis/expr/operations/udf.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ def python(
Python function call per row
This calling pattern tends to be **much** slower than
[`pandas`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pandas)
[`pandas`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pandas)
or
[`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pyarrow)-based
[`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pyarrow)-based
vectorized UDFs.
:::
Expand Down Expand Up @@ -231,8 +231,8 @@ def python(
See Also
--------
- [`pandas`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pandas)
- [`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pyarrow)
- [`pandas`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pandas)
- [`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pyarrow)
"""
return _wrap(
cls._make_wrapper,
Expand Down Expand Up @@ -284,8 +284,8 @@ def pandas(
See Also
--------
- [`python`](./scalar-udfs.qmd#ibis.expr.operations.scalar.python)
- [`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pyarrow)
- [`python`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.python)
- [`pyarrow`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pyarrow)
"""
return _wrap(
cls._make_wrapper,
Expand Down Expand Up @@ -336,8 +336,8 @@ def pyarrow(
See Also
--------
- [`python`](./scalar-udfs.qmd#ibis.expr.operations.scalar.python)
- [`pandas`](./scalar-udfs.qmd#ibis.expr.operations.scalar.pandas)
- [`python`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.python)
- [`pandas`](./scalar-udfs.qmd#ibis.expr.operations.udf.scalar.pandas)
"""
return _wrap(
cls._make_wrapper,
Expand Down

0 comments on commit c26e48b

Please sign in to comment.