Commit a54f05e2 by Torkel Ödegaard

Merge pull request #140 from nixfloyd/master

Added the 'stacked' and 'lowestCurrent' functions
parents 4b75d677 4b0cd077
...@@ -77,6 +77,13 @@ function (_) { ...@@ -77,6 +77,13 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: "stacked",
category: categories.Special,
params: [ { name: "stack", type: 'string' } ],
defaultParams: ['stacked']
});
addFuncDef({
name: "groupByNode", name: "groupByNode",
category: categories.Special, category: categories.Special,
params: [ params: [
...@@ -214,6 +221,13 @@ function (_) { ...@@ -214,6 +221,13 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: 'lowestCurrent',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
addFuncDef({
name: 'movingAverage', name: 'movingAverage',
category: categories.Filter, category: categories.Filter,
params: [ { name: "window size", type: "int" } ], params: [ { name: "window size", type: "int" } ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment