649 B
649 B
title | description | list_title | influxdb/cloud/tags | menu | weight | list_code_example | source | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create custom Flux functions | Create your own custom Flux functions to transform and operate on data. | Custom functions |
|
|
220 | ```js multByX = (tables=<-, x) => tables |> map(fn: (r) => ({r with _value: r._value * x})) data |> multByX(x: 2.0) ``` | /shared/influxdb-v2/query-data/flux/custom-functions/_index.md |