Chore: Add last downsampling function to Resample expression (#57379)

This commit is contained in:
Yuriy Tseretyan
2022-10-21 10:03:43 -04:00
committed by GitHub
parent cd0e0fcc53
commit 245c1ee3d3
3 changed files with 37 additions and 0 deletions
+1
View File
@@ -75,6 +75,7 @@ export const reducerMode: Array<SelectableValue<ReducerMode>> = [
];
export const downsamplingTypes: Array<SelectableValue<string>> = [
{ value: ReducerID.last, label: 'Last', description: 'Fill with the last value' },
{ value: ReducerID.min, label: 'Min', description: 'Fill with the minimum value' },
{ value: ReducerID.max, label: 'Max', description: 'Fill with the maximum value' },
{ value: ReducerID.mean, label: 'Mean', description: 'Fill with the average value' },