Added nPercentile and keepLastValue

This commit is contained in:
Falk Stern 2014-03-11 12:06:30 +01:00
parent b396563235
commit 2ea21e1f96

View File

@ -50,6 +50,13 @@ function (_) {
defaultParams: [3]
});
addFuncDef({
name: "nPercentile",
category: categories.Calculate,
params: [ { name: "Nth percentile", type: 'int' } ],
defaultParams: [95]
});
addFuncDef({
name: 'sumSeries',
shortName: 'sum',
@ -163,6 +170,11 @@ function (_) {
category: categories.Special,
});
addFuncDef({
name: 'keepLastValue',
category: categories.Special,
});
addFuncDef({
name: 'scale',
category: categories.Transform,