|
@@ -123,6 +123,9 @@ def displayParticipation(participation):
|
123
|
123
|
plt.show()
|
124
|
124
|
|
125
|
125
|
|
|
126
|
+def consoleDisplay(participations):
|
|
127
|
+ for participation in participations[:20]:
|
|
128
|
+ print(participation)
|
126
|
129
|
# ------------------------------------------------
|
127
|
130
|
# Main Code
|
128
|
131
|
# ------------------------------------------------
|
|
@@ -134,6 +137,8 @@ def main(argv):
|
134
|
137
|
messages = filterMessages(messages)
|
135
|
138
|
|
136
|
139
|
participation = computeParticipation(messages)
|
|
140
|
+
|
|
141
|
+ consoleDisplay(participation)
|
137
|
142
|
displayParticipation(participation)
|
138
|
143
|
|
139
|
144
|
if __name__ == "__main__":
|