Add delta() series transform function, closes #172.

This commit is contained in:
Alexander Zobnin
2016-09-24 10:33:47 +03:00
parent 8df8e66cbd
commit f44fce8d75
2 changed files with 18 additions and 0 deletions

View File

@@ -39,6 +39,13 @@ addFuncDef({
defaultParams: [100],
});
addFuncDef({
name: 'delta',
category: 'Transform',
params: [],
defaultParams: [],
});
addFuncDef({
name: 'sumSeries',
category: 'Aggregate',