Numeric Stream
interquartile_range(): Calculate the interquartile range
interquartile_range(): Calculate the interquartile rangeStream.of([1, 2, 3, 4, 5, 7, 7, 8, 9, 9]) \
.interquartile_range() # Returns 5first_quartile(): Calculate the first quartile
first_quartile(): Calculate the first quartileStream.of([1, 2, 3, 4, 5, 7, 7, 8, 9, 9]) \
.first_quartile() # Returns 3mean(): Calculate the mean
mean(): Calculate the meanStream.of([1, 2, 3, 4, 5, 7, 7, 8, 9, 9]) \
.mean() # Returns 5.5median(): Calculate the median
median(): Calculate the medianStream.of([1, 2, 3, 4, 5, 7, 7, 8, 9, 9]) \
.median() # Returns 6.0mode(): Calculate the mode
mode(): Calculate the moderange(): Calculate the range
range(): Calculate the rangethird_quartile(): Calculate the range
third_quartile(): Calculate the rangesum(): Calculate the sum
sum(): Calculate the sumLast updated