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