------------------------------------------------------------------------ */ Third quartile.
| 127 | /* ------------------------------------------------------------------------ */ |
| 128 | // Third quartile. |
| 129 | inline SumType q3() const { |
| 130 | CHECK_GT(samples_.size(), 0); |
| 131 | return samples_.at(std::ceil(samples_.size() * 3 / 4) - 1); |
| 132 | } |
| 133 | |
| 134 | /* ------------------------------------------------------------------------ */ |
| 135 | SumType LazyVariance() const { |