Welcome to today's lesson! Our topic for the day is data aggregation, a crucial aspect of data analysis. Like summarizing a massive book into key points, data aggregation summarizes large amounts of data into important highlights.
By the end of this lesson, you'll be equipped with several aggregation methods to summarize data streams in Java. Let's get started!
Let's say we have a list of integers denoting the ages of a group of people:
Java1List<Integer> ages = Arrays.asList(21, 23, 20, 25, 22, 27, 24, 22, 25, 22, 23, 22);
Common questions we might ask are: How many people are in the group? What's their total age? Who's the youngest and the oldest? Java's handy Stream API
methods like count()
, mapToInt().sum()
, min()
, and max()
have our answers:
Java1long numPeople = ages.stream().count(); // Number of people (12) 2int totalAges = ages.stream().mapToInt(Integer::intValue).sum(); // Total age (276) 3int youngestAge = ages.stream().min(Integer::compareTo).orElseThrow(); // Youngest age (20) 4int oldestAge = ages.stream().max(Integer::compareTo).orElseThrow(); // Oldest age (27) 5 6// Use mapToInt().average() to find the average age 7double averageAge = ages.stream().mapToInt(Integer::intValue).average().orElseThrow(); // Result: 23 8 9// Use max() and min() to find the range of ages 10int ageRange = ages.stream().max(Integer::compareTo).orElseThrow() - ages.stream().min(Integer::compareTo).orElseThrow(); // Result: 7
These functions provide essential aggregation operations and are widely used with data streams.
For deeper analyses, such as calculating the average age or range of ages manually, we can use for
loops.
For example, using for
loops, we can also find the mode or most frequent age:
Java1List<Integer> ages = Arrays.asList(21, 23, 20, 25, 22, 27, 24, 22, 25, 22, 23, 22); 2 3// Initialize a map to store the frequency of each age 4Map<Integer, Integer> frequencies = new HashMap<>(); 5 6// Use a for loop to populate frequencies 7for (int age : ages) { 8 frequencies.put(age, frequencies.getOrDefault(age, 0) + 1); 9} 10 11// Find the age with the max frequency 12int maxFreq = 0; 13int modeAge = -1; 14for (Map.Entry<Integer, Integer> entry : frequencies.entrySet()) { 15 if (entry.getValue() > maxFreq) { 16 maxFreq = entry.getValue(); 17 modeAge = entry.getKey(); 18 } 19} 20System.out.println("Max frequency: " + maxFreq); // Max frequency: 4 21System.out.println("Mode age: " + modeAge); // Mode age: 22
While
loops can also be used similarly for more complex tasks.
Finally, let's explore the reduce()
method, a powerful tool for performing complex aggregations. It applies a binary function to all elements in an iterative and cumulative way. For example, let's calculate the product of all elements in a list using the reduce()
method.
Java1List<Integer> ages = Arrays.asList(21, 23, 20, 25, 22); 2int product = ages.stream().reduce(1, (a, b) -> a * b); // 1 is the start value for the calculation 3// This performs the following calculation: (((((1 * 21) * 23) * 20) * 25) * 22) 4System.out.println(product); // Output: 5313000
By using the multiplication function as the binary function, reduce()
has computed the product of all elements in our list.
We can also use reduce()
to accomplish more complex tasks. Consider, for instance, the problem of separately computing the sums of even numbers and odd numbers in the ages
list.
Java1List<Integer> ages = Arrays.asList(21, 23, 20, 25, 22); 2int sumEvens = ages.stream() 3 .filter(age -> age % 2 == 0) 4 .mapToInt(Integer::intValue) 5 .sum(); 6 7int sumOdds = ages.stream() 8 .filter(age -> age % 2 != 0) 9 .mapToInt(Integer::intValue) 10 .sum(); 11 12System.out.println("Evens sum: " + sumEvens + ", Odds sum: " + sumOdds); // Output: Evens sum: 42, Odds sum: 69
In this example, we filtered the elements of the list into even and odd categories and then summed them separately.
Fantastic! You've just learned how to use basic and advanced data aggregation methods in Java, including using the reduce()
method! These techniques are pivotal in data analysis and understanding. Now, get ready for the practical tasks lined up next. They'll reinforce the skills you've just gained. Remember, the more you practice, the better you become. Good luck with your practice!