Numeric Stream
Last updated
Last updated
For information on how to create a NumericStream
please visit the Quick Start docs:
interquartile_range()
: Calculate the interquartile rangeCalculates the interquartile range of a numerical Stream. Returns either int
or float
.
first_quartile()
: Calculate the first quartileCalculates the first quartile of a numerical Stream. Returns either int
or float
.
mean()
: Calculate the meanCalculates the mean of a numerical Stream. Returns either int
or float
.
median()
: Calculate the medianCalculates the median of a numerical Stream. Returns either int
or float
.
mode()
: Calculate the modeCalculates the mode(s) (most frequently occurring element/elements) of a numerical Stream. Returns a list of either int
, float
or None
.
range()
: Calculate the rangeCalculates the range of a numerical Stream. Returns either int
or float
.
third_quartile()
: Calculate the rangeCalculates the third quartile of a numerical Stream. Returns either int
or float
.
sum()
: Calculate the sumCalculates the sum of all elements of a numerical Stream. Returns either int
or float
.