mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
21 lines
406 B
TypeScript
21 lines
406 B
TypeScript
export const FUNCTIONS = [
|
|
{
|
|
id: 'STDDEV',
|
|
name: 'STDDEV',
|
|
description: `STDDEV(
|
|
expression
|
|
)
|
|
|
|
Returns the standard deviation of non-NULL input values, or NaN if the input contains a NaN.`,
|
|
},
|
|
{
|
|
id: 'VARIANCE',
|
|
name: 'VARIANCE',
|
|
description: `VARIANCE(
|
|
expression
|
|
)
|
|
|
|
Returns the variance of non-NULL input values, or NaN if the input contains a NaN.`,
|
|
},
|
|
];
|