mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
12 lines
429 B
Plaintext
12 lines
429 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"}
|
|
]
|
|
}
|