()
| 251 | } |
| 252 | |
| 253 | @Override |
| 254 | public String toString() { |
| 255 | if (count() > 0) { |
| 256 | return MoreObjects.toStringHelper(this).add("xStats", xStats).add("yStats", yStats).add("populationCovariance", populationCovariance()).toString(); |
| 257 | } else { |
| 258 | return MoreObjects.toStringHelper(this).add("xStats", xStats).add("yStats", yStats).toString(); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | double sumOfProductsOfDeltas() { |
| 263 | return sumOfProductsOfDeltas; |
nothing calls this directly
no test coverage detected