hotfix: fixed param name on derivative function
parent
41de97c364
commit
9c9e84b2b6
|
@ -22,7 +22,7 @@ _**Output data type:** Float_
|
||||||
derivative(
|
derivative(
|
||||||
unit: 1s,
|
unit: 1s,
|
||||||
nonNegative: false,
|
nonNegative: false,
|
||||||
column: "_value",
|
columns: ["_value"],
|
||||||
timeSrc: "_time"
|
timeSrc: "_time"
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
@ -41,9 +41,9 @@ When set to `true`, if a value is less than the previous value, it is assumed th
|
||||||
|
|
||||||
_**Data type:** Boolean_
|
_**Data type:** Boolean_
|
||||||
|
|
||||||
### column
|
### columns
|
||||||
The column to use to compute the derivative.
|
The columns to use to compute the derivative.
|
||||||
Defaults to `"_value"`.
|
Defaults to `["_value"]`.
|
||||||
|
|
||||||
_**Data type:** String_
|
_**Data type:** String_
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue