MV_AVG

Converts a multivalued field into a single valued field containing the average
of all of the values. For example:
```esql
ROW a=[3, 5, 1, 6]
| EVAL avg_a = MV_AVG(a)
```

The output type is always a double and the input type can be any number.
