-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart1_task1_solution.py
executable file
·36 lines (26 loc) · 1.09 KB
/
part1_task1_solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Part 1- Basic Python
# author: Kai Chen
# date: Jan. 2017
# Task 1
table = [
{'age': 32, 'gender':'m', 'loc':'Germany', 'val':4233},
{'age': 23, 'gender': 'f', 'loc': 'US', 'val': 11223},
{'age': 31, 'gender': 'f', 'loc': 'France', 'val': 3234},
{'age': 41, 'gender': 'm', 'loc': 'France', 'val': 2230},
{'age': 19, 'gender': 'm', 'loc': 'Germany', 'val': 42},
{'age': 21, 'gender': 'f', 'loc': 'France', 'val': 3315},
{'age': 23, 'gender': 'm', 'loc': 'Italy', 'val': 520},
]
def group_aggregate(groupby, field, agg, table):
dict = {key: [] for key in (item.get(groupby) for item in table)}
for item in table:
key = item.get(groupby)
dict[key].append(item.get(field))
dict = {key: agg(value) for key, value in dict.items()}
print('aggregating %s (%s)' % (field, agg.__name__))
for key, item in dict.items():
print(key, ':', item)
return
group_aggregate(groupby = 'gender', field = 'age', agg = sum, table = table)
print()
group_aggregate(groupby = 'loc', field = 'age', agg = min, table = table)