* @function ArrayStatistic.getMedian * @description 求中位数。 * @param {Array. } array 需要求中位数的参数。 * @returns {number} 返回中位数。
(array)
| 161 | * @returns {number} 返回中位数。 |
| 162 | */ |
| 163 | static getMedian(array) { |
| 164 | return this.getInstance(array).median(); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * @function ArrayStatistic.getTimes |
no test coverage detected