mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
19 lines
512 B
Plaintext
19 lines
512 B
Plaintext
{
|
|
"name": "array_mean",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns the mean of arithmetic values in an array. Non numeric values in the array are ignored.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_mean(array(0,1,7,66.6,135.4))",
|
|
"returns": "42"
|
|
}, {
|
|
"expression": "array_mean(array(0,84,'a','b','c'))",
|
|
"returns": "42"
|
|
}],
|
|
"tags": ["array", "ignored", "mean", "numeric", "arithmetic"]
|
|
}
|