util_quartile
Calculate the first, second, or third quartile of a numeric array to understand data distribution.
Instructions
计算数组的四分位数。q 可选 0.25(Q1)/ 0.5(Q2 中位数)/ 0.75(Q3)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | 数值数组 | |
| q | Yes | 四分位位置:0.25/0.5/0.75 |