fixed broken links in custom aggregate guide

pull/219/head
Scott Anderson 2019-05-03 14:00:59 -06:00
parent 9788210acd
commit 068ffa5f79
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ Conditional expressions are most useful in the following contexts:
- When using functions that operate on a single row at a time (
[`filter()`](/v2.0/reference/flux/functions/built-in/transformations/filter/),
[`map()`](/v2.0/reference/flux/functions/built-in/transformations/map/),
[`reduce()`](/v2.0/reference/flux/functions/built-in/transformations/aggregations/reduce) ).
[`reduce()`](/v2.0/reference/flux/functions/built-in/transformations/aggregates/reduce) ).
## Examples

View File

@ -145,7 +145,7 @@ and the `reduce()` function to aggregate rows in each input table.
### Create a custom average function
This example illustrates how to create a function that averages values in a table.
_This is meant for demonstration purposes only.
The built-in [`mean()` function](/v2.0/reference/flux/functions/built-in/tranformations/aggregates/mean/)
The built-in [`mean()` function](/v2.0/reference/flux/functions/built-in/transformations/aggregates/mean/)
does the same thing and is much more performant._
{{< code-tabs-wrapper >}}