add docs for removeAboveValue(), removeBelowValue() and transformNull(), #562
This commit is contained in:
@@ -88,6 +88,35 @@ calculates moving average over 60 points (if metric has 1 second resolution it m
|
|||||||
```
|
```
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### _removeAboveValue_
|
||||||
|
```
|
||||||
|
removeAboveValue(N)
|
||||||
|
```
|
||||||
|
Replaces series values with `null` if value > N
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
```
|
||||||
|
removeAboveValue(1)
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### _removeBelowValue_
|
||||||
|
```
|
||||||
|
removeBelowValue(N)
|
||||||
|
```
|
||||||
|
Replaces series values with `null` if value < N
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### _transformNull_
|
||||||
|
```
|
||||||
|
transformNull(N)
|
||||||
|
```
|
||||||
|
Replaces `null` values with N
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Aggregate
|
## Aggregate
|
||||||
|
|
||||||
### _aggregateBy_
|
### _aggregateBy_
|
||||||
|
|||||||
Reference in New Issue
Block a user