Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Mean of consecutive Sublist

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Some of the classical problems in programming domain comes from different categories and one among them is finding the mean of subsets. This particular problem is also common when we need to compute the average and store consecutive group mean. Let’s try different approaches to this problem in python language. 

Method #1 : Using list comprehension + sum() The list comprehension can be used to perform the this particular task to filter out successive groups and sum function can be used to get the summation of the filtered solution. We divide the sum by sublist size for average. 

Python3




# Python3 code to demonstrate
# Mean of consecutive Sublist
# using list comprehension + sum()
 
# initializing list
test_list = [4, 7, 8, 10, 12, 15, 13, 17, 14]
 
# printing original list
print("The original list : " + str(test_list))
 
# using list comprehension + sum()
# Mean of consecutive Sublist
res = [ sum(test_list[x : x + 3]) / 3 for x in range(0, len(test_list), 3)]
 
# printing result
print("The grouped average list is : " + str(res))

Output : 

The original list : [4, 7, 8, 10, 12, 15, 13, 17, 14]
The grouped average list is : [6.333333333333333, 12.333333333333334, 14.666666666666666]

Time Complexity: O(n), where n is the number of elements in the list “test_list”.
Auxiliary Space: O(n), where n is the number of elements in the list “test_list”.

  Method #2 : Using sum() + itertools.islice() The task of slicing the list into chunks is done by islice method here and the conventional task of getting the summation is done by the sum function as the above method. We divide the sum by sublist size for average. 

Python3




# Python3 code to demonstrate
# Mean of consecutive Sublist
# using itertools.islice() + sum()
import itertools
 
# initializing list
test_list = [4, 7, 8, 10, 12, 15, 13, 17, 14]
 
# printing original list
print("The original list : " + str(test_list))
 
# using itertools.islice() + sum()
# Mean of consecutive Sublist
res = [sum(list(itertools.islice(test_list, i, i + 3))) / 3 for i in range(0, len(test_list), 3)]
 
# printing result
print("The grouped average list is : " + str(res))

Output : 

The original list : [4, 7, 8, 10, 12, 15, 13, 17, 14]
The grouped average list is : [6.333333333333333, 12.333333333333334, 14.666666666666666]

Time complexity: O(n), where n is the length of the input list ‘test_list’

Space complexity: O(n), where n is the length of the input list ‘test_list’

Method #3 : Using numpy.mean()

We can use the mean function from numpy library which will help us to get the mean of elements. We pass the argument list converted to numpy array and chunksize as argument to mean function.

Python3




# Python3 code to demonstrate
# Mean of consecutive Sublist
# using numpy.mean()
import numpy as np
   
# initializing list
test_list = [4, 7, 8, 10, 12, 15, 13, 17, 14]
   
# printing original list
print("The original list : " + str(test_list))
   
# using numpy.mean()
# Mean of consecutive Sublist
res = [np.mean(np.array(test_list[i:i+3])) for i in range(0, len(test_list), 3)]
   
# printing result
print("The grouped average list is : " + str(res))

Output:

The original list : [4, 7, 8, 10, 12, 15, 13, 17, 14]
The grouped average list is : [6.333333333333333, 12.333333333333334, 14.666666666666666]
 

Time complexity: O(n)

Space complexity: O(n)


My Personal Notes arrow_drop_up
Last Updated : 24 Mar, 2023
Like Article
Save Article
Similar Reads
Related Tutorials