runningPopulationStandardDeviationBy()
Calculate the running population standard deviation of a
BigDecimal
objects mapped from a Stream<BigDecimal>
via a mappingFunction
.Implementation Notes
This implementation is suitable mapping an arbitrary Stream<INPUT>
to BigDecimal
via a mappingFunction
; for a version that operates directly on a Stream<BigDecimal>
, see runningPopulationStandardDeviation()
.
By default, nulls are ignored and play no part in calculations, see treatNullAs()
and treatNullAsZero()
below for ways to change this behavior. The default MathContext
for all calculations is
MathContext.DECIMAL64
, but this can be overridden (see withMathContext()
, below).
Signatures
runningPopulationStandardDeviationBy(Function<INPUT, BigDecimal> mappingFunction)
mappingFunction
- A non-null function to map streamINPUT
elements intoBigDecimal
for calculation
Additional Methods
Method | Purpose |
---|---|
treatNullAsZero() | When encountering a null value in a stream, treat it as BigDecimal.ZERO instead. See example. |
treatNullAs(BigDecimal replacement) | When encountering a null value in a stream, treat it as the given replacement value instead. See example. |
withMathContext(MathContext mathContext) | Replace the MathContext used for all mathematical operations performed by this gatherer. See example. |
withOriginal() | Include the original input value from the stream in addition to the calculated value in a WithOriginal record. See example. |
Examples
Running Standard Deviation (Population), mapped from an object
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", new BigDecimal("1.0")),
new NamedValue("second", new BigDecimal("2.0")),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j.runningPopulationStandardDeviationBy(NamedValue::value))
.toList();
// [
// BigDecimal("0.0"),
// BigDecimal("0.5"),
// BigDecimal("4.02768199119819"),
// BigDecimal("7.628073151196179"),
// BigDecimal("11.0562199688682")
// ]
Showing nulls are ignored by default
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", null),
new NamedValue("second", null),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j.runningPopulationStandardDeviationBy(NamedValue::value))
.toList();
// [
// BigDecimal("0.0"),
// BigDecimal("5.0"),
// BigDecimal("8.164965809277261")
// ]
Treating null as zero
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", null),
new NamedValue("second", null),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j.runningPopulationStandardDeviationBy(NamedValue::value).treatNullAsZero())
.toList();
// [
// BigDecimal("0"),
// BigDecimal("0"),
// BigDecimal("4.714045207910317"),
// BigDecimal("8.2915619758885"),
// BigDecimal("11.6619037896906")
// ]
Replacing null with another BigDecimal
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", null),
new NamedValue("second", null),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j.runningPopulationStandardDeviationBy(NamedValue::value).treatNullAs(BigDecimal.TWO))
.toList();
// [
// BigDecimal("0"),
// BigDecimal("0"),
// BigDecimal("3.771236166328253"),
// BigDecimal("7.399324293474371"),
// BigDecimal("10.85172797300043")
// ]
Specifying a new MathContext
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", new BigDecimal("1.0")),
new NamedValue("second", new BigDecimal("2.0")),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j
.runningPopulationStandardDeviationBy(NamedValue::value)
.withMathContext(new MathContext(3, RoundingMode.DOWN))
)
.toList();
// [
// BigDecimal("0.0"),
// BigDecimal("0.5"),
// BigDecimal("4.02"),
// BigDecimal("7.62"),
// BigDecimal("11")
// ]
Emitting a record containing the original and calculated values
record NamedValue(String name, BigDecimal value) {}
Stream
.of(
new NamedValue("first", new BigDecimal("1.0")),
new NamedValue("second", new BigDecimal("2.0")),
new NamedValue("third", new BigDecimal("10.0")),
new NamedValue("fourth", new BigDecimal("20.0")),
new NamedValue("fifth", new BigDecimal("30.0"))
)
.gather(Gatherers4j.runningPopulationStandardDeviationBy(NamedValue::value).withOriginal())
.toList();
// [
// WithOriginal[original=NamedValue[name=first, value=1.0], calculated=0.0]
// WithOriginal[original=NamedValue[name=second, value=2.0], calculated=0.5]
// WithOriginal[original=NamedValue[name=third, value=10.0], calculated=4.02768199119819]
// WithOriginal[original=NamedValue[name=fourth, value=20.0], calculated=7.628073151196179]
// WithOriginal[original=NamedValue[name=fifth, value=30.0], calculated=11.0562199688682]
// ]