Skip to content
Advertisement

Calcualte average using Akka Streams

Using this guide : https://doc.akka.io/docs/akka/current/stream/operators/Source-or-Flow/splitAfter.html I’m attempting to calculate the average of a number of attributes within a List. More specifically, using the code below I’m attempting to calculate the average value for a an actor source that emits values within a specified time frame :

JavaScript

The closest I’ve got is just summing the values using reduce :

JavaScript

How to modify so that the average of values is calculated ?

Advertisement

Answer

Instead of reducing a stream of numeric elements, you can first map the stream converting the elements to a new data structure that a) contains the numeric value and b) the number of elements contributing to this value, this means it will be 1 initially, so a stream of 10, 11, 12 will become (10, 1), (11, 1), (12, 1).

When you then reduce the stream, you combine the elements by adding up the numeric values and the number-of-elements-counter. This way you eventually not only obtain the sum of all numeric values but also the count of elements you added up (this will be (33, 3) in the example). Obtaining the average is then trivial.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement