Skip to content
This repository was archived by the owner on Aug 23, 2023. It is now read-only.

Added integral function #1325

Merged
merged 3 commits into from
May 28, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
made integral stable
the-real-stiven committed May 23, 2019
commit 7db01e1913092ecac29ea51500282050d412a52d
2 changes: 1 addition & 1 deletion docs/graphite.md
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ See also:
| holtWintersConfidenceBands | | No |
| holtWintersForecast | | No |
| identity | | No |
| integral | | No |
| integral | | Stable |
| integralByInterval | | No |
| interpolate | | No |
| invert | | No |
2 changes: 1 addition & 1 deletion expr/funcs.go
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ func init() {
"highestAverage": {NewHighestLowestConstructor("average", true), true},
"highestCurrent": {NewHighestLowestConstructor("current", true), true},
"highestMax": {NewHighestLowestConstructor("max", true), true},
"integral": {NewIntegral, false},
"integral": {NewIntegral, true},
"isNonNull": {NewIsNonNull, true},
"keepLastValue": {NewKeepLastValue, true},
"lowest": {NewHighestLowestConstructor("", false), true},