480 B
480 B
title | description | list_title | influxdb/cloud/tags | menu | weight | list_code_example | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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) ``` |
{{< duplicate-oss >}}