* @readonly * @type {number}
()
| 177 | * @type {number} |
| 178 | */ |
| 179 | get stddev() { |
| 180 | if (!isHistogram(this)) |
| 181 | throw new ERR_INVALID_THIS('Histogram'); |
| 182 | return this[kHandle]?.stddev(); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * @param {number} percentile |
nothing calls this directly
no test coverage detected