b@2264
|
1 #!/usr/bin/python
|
b@2264
|
2 # -*- coding: utf-8 -*-
|
b@2264
|
3
|
b@2264
|
4 import xml.etree.ElementTree as ET
|
b@2264
|
5 import os # for getting files from directory
|
b@2264
|
6 import operator # for sorting data with multiple keys
|
b@2264
|
7 import sys # for accessing command line arguments
|
b@2264
|
8 import subprocess # for calling pdflatex
|
b@2264
|
9 import shlex # for calling pdflatex
|
b@2264
|
10 import matplotlib.pyplot as plt # plots
|
b@2264
|
11 import numpy as np # numbers
|
b@2264
|
12
|
b@2264
|
13 # Command line arguments
|
b@2264
|
14 assert len(sys.argv)<4, "generate_report takes at most 2 command line arguments\n"+\
|
b@2264
|
15 "Use: python generate_report.py [results_folder] [no_render | -nr]"
|
b@2264
|
16
|
b@2264
|
17 render_figures = True
|
b@2264
|
18
|
b@2264
|
19 # XML results files location
|
b@2264
|
20 if len(sys.argv) == 1:
|
b@2264
|
21 folder_name = "../saves/" # Looks in 'saves/' folder from 'scripts/' folder
|
b@2279
|
22 print("Use: python generate_report.py [results_folder] [no_render | -nr]")
|
b@2279
|
23 print("Using default path: " + folder_name)
|
b@2264
|
24 elif len(sys.argv) == 2:
|
b@2264
|
25 folder_name = sys.argv[1] # First command line argument is folder
|
b@2264
|
26 elif len(sys.argv) == 3:
|
b@2264
|
27 folder_name = sys.argv[1] # First command line argument is folder
|
b@2264
|
28 assert sys.argv[2] in ('no_render','-nr'), "Second argument not recognised. \n" +\
|
b@2264
|
29 "Use: python generate_report.py [results_folder] [no_render | -nr]"
|
b@2264
|
30 # Second command line argument is [no_render | -nr]
|
b@2264
|
31 render_figures = False
|
b@2264
|
32
|
b@2264
|
33 def isNaN(num):
|
b@2264
|
34 return num != num
|
b@2264
|
35
|
b@2264
|
36 # Turn number of seconds (int) to '[minutes] min [seconds] s' (string)
|
b@2264
|
37 def seconds2timestr(time_in_seconds):
|
b@2264
|
38 if time_in_seconds is not None and not isNaN(time_in_seconds):
|
b@2264
|
39 time_in_minutes = int(time_in_seconds/60)
|
b@2264
|
40 remaining_seconds = int(time_in_seconds%60)
|
b@2264
|
41 return str(time_in_minutes) + " min " + str(remaining_seconds) + " s"
|
b@2264
|
42 else:
|
b@2264
|
43 return 'N/A'
|
b@2264
|
44
|
b@2264
|
45 # stats initialisation
|
b@2264
|
46 number_of_XML_files = 0
|
b@2264
|
47 number_of_pages = 0
|
b@2264
|
48 number_of_fragments = 0
|
b@2264
|
49 total_empty_comments = 0
|
b@2264
|
50 total_not_played = 0
|
b@2264
|
51 total_not_moved = 0
|
b@2264
|
52 time_per_page_accum = 0
|
b@2264
|
53
|
b@2264
|
54 # arrays initialisation
|
b@2264
|
55 page_names = []
|
b@2264
|
56 real_page_names = [] # regardless of differing numbers of fragments
|
b@2279
|
57 subject_count = [] # subjects per page name
|
b@2264
|
58 page_count = []
|
b@2264
|
59 duration_page = [] # duration of experiment in function of page content
|
b@2264
|
60 duration_order = [] # duration of experiment in function of page number
|
b@2264
|
61 fragments_per_page = [] # number of fragments for corresponding page
|
b@2264
|
62
|
b@2264
|
63 # survey stats
|
b@2264
|
64 gender = []
|
b@2264
|
65 age = []
|
b@2264
|
66
|
b@2264
|
67 # get username if available
|
b@2264
|
68 for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
|
b@2264
|
69 user = os.environ.get(name)
|
b@2264
|
70 if user:
|
b@2264
|
71 break
|
b@2264
|
72 else:
|
b@2264
|
73 user = ''
|
b@2264
|
74
|
b@2485
|
75 # Months
|
b@2485
|
76 month_array = ['January', 'February', 'March', 'April', 'May', 'June', \
|
b@2485
|
77 'July', 'August', 'September', 'October', 'November', 'December']
|
b@2264
|
78
|
b@2264
|
79 # begin LaTeX document
|
b@2264
|
80 header = r'''\documentclass[11pt, oneside]{article}
|
b@2264
|
81 \usepackage{geometry}
|
b@2264
|
82 \geometry{a4paper}
|
b@2264
|
83 \usepackage[parfill]{parskip} % empty line instead of indent
|
b@2486
|
84 \usepackage{graphicx} % figures
|
b@2486
|
85 \usepackage[space]{grffile} % include figures with spaces in paths
|
b@2487
|
86 \usepackage[pdfpagelabels]{hyperref}
|
b@2486
|
87 \usepackage{tikz} % pie charts
|
b@2486
|
88 \usepackage{float} % place figures 'here'
|
b@2264
|
89 \title{Report}
|
b@2264
|
90 \author{'''+\
|
b@2264
|
91 user+\
|
b@2264
|
92 r'''}
|
b@2264
|
93 \graphicspath{{'''+\
|
b@2264
|
94 folder_name+\
|
b@2264
|
95 r'''}}
|
b@2264
|
96 %\setcounter{section}{-1} % Summary section 0 so number of sections equals number of files
|
b@2264
|
97 \begin{document}
|
b@2264
|
98 \maketitle
|
b@2264
|
99 This is an automatically generated report using the `generate\_report.py' Python script
|
b@2264
|
100 included with the Web Audio Evaluation Tool \cite{WAET} distribution which can be found
|
b@2487
|
101 at \texttt{\href{https://github.com/BrechtDeMan/WebAudioEvaluationTool}{github.com/BrechtDeMan/WebAudioEvaluationTool}}.
|
b@2264
|
102 \tableofcontents
|
b@2264
|
103
|
b@2264
|
104 '''
|
b@2264
|
105
|
b@2486
|
106 footer = '\n\t\t'+r'''\begin{thebibliography}{1}
|
b@2264
|
107 \bibitem{WAET} % reference to accompanying publication
|
b@2264
|
108 Nicholas Jillings, Brecht De Man, David Moffat and Joshua D. Reiss,
|
b@2264
|
109 ``Web Audio Evaluation Tool: A browser-based listening test environment,''
|
b@2264
|
110 presented at the 12th Sound and Music Computing Conference, July 2015.
|
b@2264
|
111 \end{thebibliography}
|
b@2264
|
112 \end{document}'''
|
b@2264
|
113
|
b@2264
|
114 # make sure folder_name ends in '/'
|
b@2264
|
115 folder_name = os.path.join(folder_name, '')
|
b@2264
|
116
|
b@2264
|
117 # generate images for later use
|
b@2264
|
118 if render_figures:
|
b@2567
|
119 script_path = os.path.dirname(os.path.realpath(__file__)) # where is generate_report.py?
|
b@2567
|
120 subprocess.call("python " +script_path+"/timeline_view_movement.py '"+folder_name+"'", shell=True)
|
b@2567
|
121 subprocess.call("python " +script_path+"/score_parser.py '"+folder_name+"'", shell=True)
|
b@2567
|
122 subprocess.call("python " +script_path+"/score_plot.py '"+folder_name+"ratings/'", shell=True)
|
b@2264
|
123
|
b@2485
|
124 # make array of text and array of dates
|
b@2485
|
125 body_array = []
|
b@2485
|
126 date_array = []
|
b@2485
|
127
|
b@2264
|
128 # get every XML file in folder
|
b@2264
|
129 files_list = os.listdir(folder_name)
|
b@2264
|
130 for file in files_list: # iterate over all files in files_list
|
b@2264
|
131 if file.endswith(".xml"): # check if XML file
|
b@2264
|
132 number_of_XML_files += 1
|
b@2264
|
133 tree = ET.parse(folder_name + file)
|
b@2264
|
134 root = tree.getroot()
|
b@2264
|
135
|
b@2485
|
136 # get date
|
b@2485
|
137 # <datetime>
|
b@2485
|
138 # <date year="2016" month="7" day="12"/>
|
b@2485
|
139 # <time hour="14" minute="12" secs="6"/>
|
b@2485
|
140 # </datetime>
|
b@2485
|
141 date_node = root.find("./datetime/date")
|
b@2485
|
142 time_node = root.find("./datetime/time")
|
b@2485
|
143 year = date_node.get("year")
|
b@2485
|
144 month = date_node.get("month")
|
b@2485
|
145 day = date_node.get("day")
|
b@2485
|
146 hour = time_node.get("hour")
|
b@2485
|
147 minute = time_node.get("minute")
|
b@2485
|
148 second = time_node.get("secs")
|
b@2485
|
149 date_array.append((int(year),int(month),int(day),\
|
b@2485
|
150 int(hour),int(minute),int(second)))
|
b@2264
|
151
|
b@2485
|
152 # date as section title
|
b@2489
|
153 body = '\n\section{'+day+' '+month_array[int(month)-1]+' '+year+' '+hour+':'+minute+':'+second+'}\n'
|
b@2485
|
154
|
b@2485
|
155 # file name
|
b@2487
|
156 body += '\t\tFile: '+file[:-4]+'\\\\ \n'
|
b@2485
|
157
|
b@2264
|
158 # reset for new subject
|
b@2264
|
159 total_duration = 0
|
b@2264
|
160 page_number = 0
|
b@2264
|
161
|
b@2264
|
162 individual_table = '\n' # table with stats for this individual test file
|
b@2264
|
163 timeline_plots = '' # plots of timeline (movements and plays)
|
b@2264
|
164
|
b@2264
|
165 # DEMO survey stats
|
b@2264
|
166 # get gender
|
b@2487
|
167 post_survey = root.find("./survey/[@location='post']")
|
b@2487
|
168 this_subjects_gender = post_survey.find("./surveyresult/[@ref='gender']/response")
|
b@2264
|
169 if this_subjects_gender is not None:
|
b@2264
|
170 gender.append(this_subjects_gender.get("name"))
|
b@2264
|
171 else:
|
b@2264
|
172 gender.append('UNAVAILABLE')
|
b@2264
|
173 # get age
|
b@2487
|
174 this_subjects_age = post_survey.find("./surveyresult/[@ref='age']/response")
|
b@2264
|
175 if this_subjects_age is not None:
|
b@2264
|
176 age.append(this_subjects_age.text)
|
b@2487
|
177 if this_subjects_gender is not None:
|
b@2487
|
178 body += 'Details: '+this_subjects_gender.get("name")
|
b@2487
|
179 if this_subjects_age is not None:
|
b@2487
|
180 body += ', ' + this_subjects_age.text
|
b@2487
|
181 body += '\\\\ \n'
|
b@2264
|
182
|
b@2264
|
183 # get list of all page names
|
b@2279
|
184 for page in root.findall("./page"): # iterate over pages
|
b@2279
|
185 page_name = page.get('ref') # get page name
|
b@2264
|
186
|
b@2264
|
187 if page_name is None: # ignore 'empty' audio_holders
|
b@2279
|
188 print("WARNING: " + file + " contains empty audio holder. (evaluation_stats.py)")
|
b@2264
|
189 break # move on to next
|
b@2264
|
190
|
b@2264
|
191 number_of_comments = 0 # for this page
|
b@2264
|
192 number_of_missing_comments = 0 # for this page
|
b@2264
|
193 not_played = [] # for this page
|
b@2264
|
194 not_moved = [] # for this page
|
b@2264
|
195
|
b@2279
|
196 if page.find("./metric/metricresult[@id='testTime']") is not None: # check if time is included
|
b@2279
|
197 # 'testTime' keeps total duration: subtract time so far for duration of this page
|
b@2279
|
198 duration = float(page.find("./metric/metricresult[@id='testTime']").text)# - total_duration
|
b@2264
|
199
|
b@2264
|
200 # total duration of test
|
b@2264
|
201 total_duration += duration
|
b@2264
|
202 else:
|
b@2264
|
203 duration = float('nan')
|
b@2264
|
204 total_duration = float('nan')
|
b@2264
|
205
|
b@2264
|
206 # number of audio elements
|
b@2279
|
207 audioelements = page.findall("./audioelement") # get audioelements
|
b@2264
|
208 number_of_fragments += len(audioelements) # add length of this list to total
|
b@2264
|
209
|
b@2264
|
210 # number of comments (interesting if comments not mandatory)
|
b@2264
|
211 for audioelement in audioelements:
|
b@2264
|
212 response = audioelement.find("./comment/response")
|
b@2281
|
213 was_played = audioelement.find("./metric/metricresult/[@name='elementFlagListenedTo']")
|
b@2281
|
214 was_moved = audioelement.find("./metric/metricresult/[@name='elementFlagMoved']")
|
b@2279
|
215 if response is not None and response.text is not None and len(response.text) > 1:
|
b@2264
|
216 number_of_comments += 1
|
b@2264
|
217 else:
|
b@2264
|
218 number_of_missing_comments += 1
|
b@2264
|
219 if was_played is not None and was_played.text == 'false':
|
b@2279
|
220 not_played.append(audioelement.get('name'))
|
b@2264
|
221 if was_moved is not None and was_moved.text == 'false':
|
b@2279
|
222 not_moved.append(audioelement.get('name'))
|
b@2264
|
223
|
b@2264
|
224 # update global counters
|
b@2264
|
225 total_empty_comments += number_of_missing_comments
|
b@2264
|
226 total_not_played += len(not_played)
|
b@2264
|
227 total_not_moved += len(not_moved)
|
b@2264
|
228
|
b@2264
|
229 # PRINT alerts when elements not played or markers not moved
|
b@2264
|
230 # number of audio elements not played
|
b@2264
|
231 if len(not_played) > 1:
|
b@2264
|
232 body += '\t\t\\emph{\\textbf{ATTENTION: '+str(len(not_played))+\
|
b@2264
|
233 ' fragments were not listened to in '+page_name+'! }}'+\
|
b@2264
|
234 ', '.join(not_played)+'\\\\ \n'
|
b@2264
|
235 if len(not_played) == 1:
|
b@2264
|
236 body += '\t\t\\emph{\\textbf{ATTENTION: one fragment was not listened to in '+page_name+'! }}'+\
|
b@2264
|
237 not_played[0]+'\\\\ \n'
|
b@2264
|
238
|
b@2264
|
239 # number of audio element markers not moved
|
b@2264
|
240 if len(not_moved) > 1:
|
b@2264
|
241 body += '\t\t\\emph{\\textbf{ATTENTION: '+str(len(not_moved))+\
|
b@2264
|
242 ' markers were not moved in '+page_name+'! }}'+\
|
b@2264
|
243 ', '.join(not_moved)+'\\\\ \n'
|
b@2264
|
244 if len(not_moved) == 1:
|
b@2264
|
245 body += '\t\t\\emph{\\textbf{ATTENTION: one marker was not moved in '+page_name+'! }}'+\
|
b@2264
|
246 not_moved[0]+'\\\\ \n'
|
b@2264
|
247
|
b@2264
|
248 # PRINT song-specific statistic
|
b@2264
|
249 individual_table += '\t\t'+page_name+'&'+\
|
b@2264
|
250 str(number_of_comments) + '/' +\
|
b@2264
|
251 str(number_of_comments+number_of_missing_comments)+'&'+\
|
b@2264
|
252 seconds2timestr(duration)+'\\\\\n'
|
b@2264
|
253
|
b@2279
|
254 # get timeline for this page
|
b@2264
|
255 img_path = 'timelines_movement/'+file[:-4]+'-'+page_name+'.pdf'
|
b@2264
|
256
|
b@2264
|
257 # check if available
|
b@2264
|
258 if os.path.isfile(folder_name+img_path):
|
b@2264
|
259 # SHOW timeline image
|
b@2264
|
260 timeline_plots += '\\includegraphics[width=\\textwidth]{'+\
|
b@2264
|
261 folder_name+img_path+'}\n\t\t'
|
b@2264
|
262
|
b@2264
|
263 # keep track of duration in function of page index
|
b@2264
|
264 if len(duration_order)>page_number:
|
b@2264
|
265 duration_order[page_number].append(duration)
|
b@2264
|
266 else:
|
b@2264
|
267 duration_order.append([duration])
|
b@2264
|
268
|
b@2279
|
269 # keep list of page ids and count how many times each page id
|
b@2264
|
270 # was tested, how long it took, and how many fragments there were
|
b@2279
|
271 # (if number of fragments is different, store as different page id)
|
b@2264
|
272 if page_name in page_names:
|
b@2264
|
273 page_index = page_names.index(page_name) # get index
|
b@2264
|
274 # check if number of audioelements the same
|
b@2264
|
275 if len(audioelements) == fragments_per_page[page_index]:
|
b@2264
|
276 page_count[page_index] += 1
|
b@2264
|
277 duration_page[page_index].append(duration)
|
b@2264
|
278 else: # make new entry
|
b@2264
|
279 alt_page_name = page_name+"("+str(len(audioelements))+")"
|
b@2264
|
280 if alt_page_name in page_names: # if already there
|
b@2264
|
281 alt_page_index = page_names.index(alt_page_name) # get index
|
b@2264
|
282 page_count[alt_page_index] += 1
|
b@2264
|
283 duration_page[alt_page_index].append(duration)
|
b@2264
|
284 else:
|
b@2264
|
285 page_names.append(alt_page_name)
|
b@2264
|
286 page_count.append(1)
|
b@2264
|
287 duration_page.append([duration])
|
b@2264
|
288 fragments_per_page.append(len(audioelements))
|
b@2264
|
289 else:
|
b@2264
|
290 page_names.append(page_name)
|
b@2264
|
291 page_count.append(1)
|
b@2264
|
292 duration_page.append([duration])
|
b@2264
|
293 fragments_per_page.append(len(audioelements))
|
b@2264
|
294
|
b@2279
|
295 # number of subjects per page regardless of differing numbers of
|
b@2264
|
296 # fragments (for inclusion in box plots)
|
b@2264
|
297 if page_name in real_page_names:
|
b@2264
|
298 page_index = real_page_names.index(page_name) # get index
|
b@2264
|
299 subject_count[page_index] += 1
|
b@2264
|
300 else:
|
b@2264
|
301 real_page_names.append(page_name)
|
b@2264
|
302 subject_count.append(1)
|
b@2264
|
303
|
b@2264
|
304 # bookkeeping
|
b@2264
|
305 page_number += 1 # increase page count for this specific test
|
b@2264
|
306 number_of_pages += 1 # increase total number of pages
|
b@2264
|
307 time_per_page_accum += duration # total duration (for average time spent per page)
|
b@2264
|
308
|
b@2264
|
309 # PRINT table with statistics about this test
|
b@2264
|
310 body += '\t\t'+r'''\begin{tabular}{|p{3.5cm}|c|p{2.5cm}|}
|
b@2264
|
311 \hline
|
b@2264
|
312 \textbf{Song name} & \textbf{Comments} & \textbf{Duration} \\ \hline '''+\
|
b@2264
|
313 individual_table+'\t\t'+\
|
b@2264
|
314 r'''\hline
|
b@2264
|
315 \textbf{TOTAL} & & \textbf{'''+\
|
b@2264
|
316 seconds2timestr(total_duration)+\
|
b@2264
|
317 r'''}\\
|
b@2264
|
318 \hline
|
b@2264
|
319 \end{tabular}
|
b@2264
|
320
|
b@2264
|
321 '''
|
b@2264
|
322 # PRINT timeline plots
|
b@2486
|
323 body += timeline_plots+'\n'
|
b@2264
|
324
|
b@2485
|
325 body_array.append(body)
|
b@2485
|
326
|
b@2485
|
327 # put sections in order according to date
|
b@2485
|
328 body_array_ordered = [b for d,b in sorted(zip(date_array,body_array))]
|
b@2485
|
329 body = ''.join(body_array_ordered)
|
b@2485
|
330
|
b@2264
|
331 # join to footer
|
b@2264
|
332 footer = body + footer
|
b@2264
|
333
|
b@2264
|
334 # empty body again
|
b@2264
|
335 body = ''
|
b@2264
|
336
|
b@2264
|
337 # PRINT summary of everything (at start)
|
b@2264
|
338 # unnumbered so that number of sections equals number of files
|
b@2264
|
339 body += '\section*{Summary}\n\t\t\\addcontentsline{toc}{section}{Summary}\n'
|
b@2264
|
340
|
b@2264
|
341 # PRINT table with statistics
|
b@2264
|
342 body += '\t\t\\begin{tabular}{ll}\n\t\t\t'
|
b@2264
|
343 body += r'Number of XML files: &' + str(number_of_XML_files) + r'\\'+'\n\t\t\t'
|
b@2264
|
344 body += r'Number of pages: &' + str(number_of_pages) + r'\\'+'\n\t\t\t'
|
b@2264
|
345 body += r'Number of fragments: &' + str(number_of_fragments) + r'\\'+'\n\t\t\t'
|
b@2264
|
346 body += r'Number of empty comments: &' + str(total_empty_comments) +\
|
b@2264
|
347 " (" + str(round(100.0*total_empty_comments/number_of_fragments,2)) + r"\%)\\"+'\n\t\t\t'
|
b@2264
|
348 body += r'Number of unplayed fragments: &' + str(total_not_played) +\
|
b@2264
|
349 " (" + str(round(100.0*total_not_played/number_of_fragments,2)) + r"\%)\\"+'\n\t\t\t'
|
b@2264
|
350 body += r'Number of unmoved markers: &' + str(total_not_moved) +\
|
b@2264
|
351 " (" + str(round(100.0*total_not_moved/number_of_fragments,2)) + r"\%)\\"+'\n\t\t\t'
|
b@2264
|
352 body += r'Average time per page: &' + seconds2timestr(time_per_page_accum/number_of_pages) + r"\\"+'\n\t\t'
|
b@2486
|
353 body += '\\end{tabular} \\\\ \n'
|
b@2264
|
354
|
b@2264
|
355 # Average duration for first, second, ... page
|
b@2486
|
356 body += "\n\n\t\t\\subsection*{Average duration per ordered page}\n See also Figure \\ref{fig:avgtimeperorder}. \\\\ \n\t\t"
|
b@2264
|
357 body += r'''\begin{tabular}{lll}
|
b@2264
|
358 \textbf{Page} & \textbf{Duration} & \textbf{\# subjects}\\'''
|
b@2264
|
359 tpp_averages = [] # store average time per page
|
b@2264
|
360 for page_number in range(len(duration_order)):
|
b@2264
|
361 body += '\n\t\t\t'+str(page_number+1) + "&" +\
|
b@2264
|
362 seconds2timestr(sum(duration_order[page_number])/len(duration_order[page_number])) +\
|
b@2264
|
363 "&"+str(len(duration_order[page_number]))+r"\\"
|
b@2264
|
364 tpp_averages.append(sum(duration_order[page_number])/len(duration_order[page_number]))
|
b@2264
|
365
|
b@2264
|
366 body += '\n\t\t\\end{tabular} \\vspace{1.5cm} \\\\ \n\n\t\t'
|
b@2264
|
367
|
b@2264
|
368 # SHOW bar plot of average time per page
|
b@2264
|
369 plt.bar(range(1,len(duration_order)+1), np.array(tpp_averages)/60)
|
b@2264
|
370 plt.xlabel('Page order')
|
b@2264
|
371 plt.xlim(.8, len(duration_order)+1)
|
b@2264
|
372 plt.xticks(np.arange(1,len(duration_order)+1)+.4, range(1,len(duration_order)+1))
|
b@2264
|
373 plt.ylabel('Average time [minutes]')
|
b@2486
|
374 plt.savefig(folder_name+"time_per_order.pdf", bbox_inches='tight')
|
b@2264
|
375 plt.close()
|
b@2264
|
376 #TODO add error bars
|
b@2264
|
377
|
b@2264
|
378
|
b@2264
|
379 # Sort pages by number of audioelements, then by duration
|
b@2264
|
380
|
b@2264
|
381 # average duration and number of subjects per page
|
b@2264
|
382 average_duration_page = []
|
b@2264
|
383 number_of_subjects_page = []
|
b@2264
|
384 for line in duration_page:
|
b@2264
|
385 number_of_subjects_page.append(len(line))
|
b@2264
|
386 average_duration_page.append(sum(line)/len(line))
|
b@2264
|
387
|
b@2264
|
388 # combine and sort in function of number of audioelements and duration
|
b@2264
|
389 combined_list = [page_names, average_duration_page, fragments_per_page, number_of_subjects_page]
|
b@2264
|
390 combined_list = sorted(zip(*combined_list), key=operator.itemgetter(1, 2)) # sort
|
b@2264
|
391
|
b@2264
|
392 # Show average duration for all songs
|
b@2486
|
393 body += '\n\n\t\t'+r'''\subsection*{Average duration per page}
|
b@2486
|
394 See also Figure \ref{fig:avgtimeperpage}. \\
|
b@2264
|
395 \begin{tabular}{llll}
|
b@2264
|
396 \textbf{Audioholder} & \textbf{Duration} & \textbf{\# subjects} & \textbf{\# fragments} \\'''
|
b@2279
|
397 page_names_ordered = []
|
b@2279
|
398 average_duration_page_ordered = []
|
b@2264
|
399 number_of_subjects = []
|
b@2264
|
400 for page_index in range(len(page_names)):
|
b@2279
|
401 page_names_ordered.append(combined_list[page_index][0])
|
b@2279
|
402 average_duration_page_ordered.append(combined_list[page_index][1])
|
b@2264
|
403 number_of_subjects.append(combined_list[page_index][3])
|
b@2264
|
404 body += '\n\t\t\t'+combined_list[page_index][0] + "&" +\
|
b@2264
|
405 seconds2timestr(combined_list[page_index][1]) + "&" +\
|
b@2264
|
406 str(combined_list[page_index][3]) + "&" +\
|
b@2264
|
407 str(combined_list[page_index][2]) + r"\\"
|
b@2264
|
408 body += '\n\t\t\\end{tabular}\n'
|
b@2264
|
409
|
b@2264
|
410 # SHOW bar plot of average time per page
|
b@2279
|
411 plt.bar(range(1,len(page_names_ordered)+1), np.array(average_duration_page_ordered)/60)
|
b@2264
|
412 plt.xlabel('Audioholder')
|
b@2279
|
413 plt.xlim(.8, len(page_names_ordered)+1)
|
b@2279
|
414 plt.xticks(np.arange(1,len(page_names_ordered)+1)+.4, page_names_ordered, rotation=90)
|
b@2264
|
415 plt.ylabel('Average time [minutes]')
|
b@2279
|
416 plt.savefig(folder_name+"time_per_page.pdf", bbox_inches='tight')
|
b@2264
|
417 plt.close()
|
b@2264
|
418
|
b@2264
|
419 # SHOW bar plot of average time per page
|
b@2279
|
420 plt.bar(range(1,len(page_names_ordered)+1), number_of_subjects)
|
b@2264
|
421 plt.xlabel('Audioholder')
|
b@2279
|
422 plt.xlim(.8, len(page_names_ordered)+1)
|
b@2279
|
423 plt.xticks(np.arange(1,len(page_names_ordered)+1)+.4, page_names_ordered, rotation=90)
|
b@2264
|
424 plt.ylabel('Number of subjects')
|
b@2264
|
425 ax = plt.gca()
|
b@2264
|
426 ylims = ax.get_ylim()
|
b@2264
|
427 yint = np.arange(int(np.floor(ylims[0])), int(np.ceil(ylims[1]))+1)
|
b@2264
|
428 plt.yticks(yint)
|
b@2279
|
429 plt.savefig(folder_name+"subjects_per_page.pdf", bbox_inches='tight')
|
b@2264
|
430 plt.close()
|
b@2264
|
431
|
b@2264
|
432 # SHOW both figures
|
b@2264
|
433 body += r'''
|
b@2486
|
434 \begin{figure}[htbp]
|
b@2486
|
435 \begin{center}
|
b@2486
|
436 \includegraphics[width=.65\textwidth]{'''+\
|
b@2486
|
437 folder_name+'time_per_order.pdf'+\
|
b@2264
|
438 r'''}
|
b@2486
|
439 \caption{Average time spent per page (order).}
|
b@2486
|
440 \label{fig:avgtimeperorder}
|
b@2486
|
441 \end{center}
|
b@2486
|
442 \end{figure}
|
b@2264
|
443
|
b@2264
|
444 '''
|
b@2264
|
445 body += r'''\begin{figure}[htbp]
|
b@2486
|
446 \begin{center}
|
b@2486
|
447 \includegraphics[width=.65\textwidth]{'''+\
|
b@2279
|
448 folder_name+'time_per_page.pdf'+\
|
b@2264
|
449 r'''}
|
b@2486
|
450 \caption{Average time spent per page (content).}
|
b@2279
|
451 \label{fig:avgtimeperpage}
|
b@2486
|
452 \end{center}
|
b@2486
|
453 \end{figure}
|
b@2264
|
454
|
b@2264
|
455 '''
|
b@2264
|
456 body += r'''\begin{figure}[htbp]
|
b@2486
|
457 \begin{center}
|
b@2486
|
458 \includegraphics[width=.65\textwidth]{'''+\
|
b@2279
|
459 folder_name+'subjects_per_page.pdf'+\
|
b@2264
|
460 r'''}
|
b@2279
|
461 \caption{Number of subjects per page.}
|
b@2279
|
462 \label{fig:subjectsperpage}
|
b@2486
|
463 \end{center}
|
b@2486
|
464 \end{figure}
|
b@2485
|
465
|
b@2264
|
466 '''
|
b@2264
|
467 #TODO add error bars
|
b@2264
|
468 #TODO layout of figures
|
b@2264
|
469
|
b@2486
|
470 # SHOW boxplot per page (in alphabetical order of page name)
|
b@2486
|
471 body += '\t\t\\clearpage \n\t\\subsection*{Ratings per page}\n'
|
b@2486
|
472 for page_name in sorted(page_names): # get each name
|
b@2264
|
473 # plot boxplot if exists (not so for the 'alt' names)
|
b@2279
|
474 if os.path.isfile(folder_name+'ratings/'+page_name+'-ratings-box.pdf'):
|
b@2486
|
475 body += r'''\begin{figure}[H]
|
b@2486
|
476 \begin{center}
|
b@2486
|
477 \includegraphics[width=.65\textwidth]{'''+\
|
b@2486
|
478 folder_name+"ratings/"+page_name+'-ratings-box.pdf'+\
|
b@2486
|
479 r'''}
|
b@2486
|
480 \caption{Box plot of ratings for page '''+\
|
b@2486
|
481 page_name+' ('+str(subject_count[real_page_names.index(page_name)])+\
|
b@2486
|
482 ''' participants).}
|
b@2486
|
483 \label{fig:boxplot'''+page_name.replace(" ", "")+'''}
|
b@2486
|
484 \end{center}
|
b@2486
|
485 \end{figure}
|
b@2486
|
486
|
b@2264
|
487 '''
|
b@2264
|
488
|
b@2264
|
489 # DEMO pie chart of gender distribution among subjects
|
b@2264
|
490 genders = ['male', 'female', 'other', 'preferNotToSay', 'UNAVAILABLE']
|
b@2264
|
491 # TODO: get the above automatically
|
b@2264
|
492 gender_distribution = ''
|
b@2264
|
493 for item in genders:
|
b@2264
|
494 number = gender.count(item)
|
b@2264
|
495 if number>0:
|
b@2264
|
496 gender_distribution += str("{:.2f}".format((100.0*number)/len(gender)))+\
|
b@2264
|
497 '/'+item.capitalize()+' ('+str(number)+'),\n'
|
b@2264
|
498
|
b@2264
|
499 body += r'''
|
b@2264
|
500 % Pie chart of gender distribution
|
b@2264
|
501 \def\angle{0}
|
b@2264
|
502 \def\radius{3}
|
b@2264
|
503 \def\cyclelist{{"orange","blue","red","green"}}
|
b@2264
|
504 \newcount\cyclecount \cyclecount=-1
|
b@2264
|
505 \newcount\ind \ind=-1
|
b@2264
|
506 \begin{figure}[htbp]
|
b@2264
|
507 \begin{center}\begin{tikzpicture}[nodes = {font=\sffamily}]
|
b@2264
|
508 \foreach \percent/\name in {'''+\
|
b@2264
|
509 gender_distribution+\
|
b@2264
|
510 r'''} {\ifx\percent\empty\else % If \percent is empty, do nothing
|
b@2264
|
511 \global\advance\cyclecount by 1 % Advance cyclecount
|
b@2264
|
512 \global\advance\ind by 1 % Advance list index
|
b@2264
|
513 \ifnum6<\cyclecount % If cyclecount is larger than list
|
b@2264
|
514 \global\cyclecount=0 % reset cyclecount and
|
b@2264
|
515 \global\ind=0 % reset list index
|
b@2264
|
516 \fi
|
b@2264
|
517 \pgfmathparse{\cyclelist[\the\ind]} % Get color from cycle list
|
b@2264
|
518 \edef\color{\pgfmathresult} % and store as \color
|
b@2264
|
519 % Draw angle and set labels
|
b@2264
|
520 \draw[fill={\color!50},draw={\color}] (0,0) -- (\angle:\radius)
|
b@2264
|
521 arc (\angle:\angle+\percent*3.6:\radius) -- cycle;
|
b@2264
|
522 \node at (\angle+0.5*\percent*3.6:0.7*\radius) {\percent\,\%};
|
b@2264
|
523 \node[pin=\angle+0.5*\percent*3.6:\name]
|
b@2264
|
524 at (\angle+0.5*\percent*3.6:\radius) {};
|
b@2264
|
525 \pgfmathparse{\angle+\percent*3.6} % Advance angle
|
b@2264
|
526 \xdef\angle{\pgfmathresult} % and store in \angle
|
b@2264
|
527 \fi
|
b@2264
|
528 };
|
b@2264
|
529 \end{tikzpicture}
|
b@2264
|
530 \caption{Representation of gender across subjects}
|
b@2264
|
531 \label{default}
|
b@2264
|
532 \end{center}
|
b@2264
|
533 \end{figure}
|
b@2264
|
534
|
b@2264
|
535 '''
|
b@2264
|
536 # problem: some people entered twice?
|
b@2264
|
537
|
b@2264
|
538 #TODO
|
b@2264
|
539 # time per page in function of number of fragments (plot)
|
b@2264
|
540 # time per participant in function of number of pages
|
b@2264
|
541 # plot total time for each participant
|
b@2264
|
542 # show 'count' per page (in order)
|
b@2264
|
543
|
b@2264
|
544 # clear up page_index <> page_count <> page_number confusion
|
b@2264
|
545
|
b@2264
|
546
|
b@2264
|
547 texfile = header+body+footer # add bits together
|
b@2264
|
548
|
b@2279
|
549 # print('pdflatex -output-directory="'+folder_name+'"" "'+ folder_name + 'Report.tex"')# DEBUG
|
b@2264
|
550
|
b@2264
|
551 # write TeX file
|
b@2264
|
552 with open(folder_name + 'Report.tex','w') as f:
|
b@2264
|
553 f.write(texfile)
|
b@2264
|
554 proc=subprocess.Popen(shlex.split('pdflatex -output-directory="'+folder_name+'" "'+ folder_name + 'Report.tex"'))
|
b@2264
|
555 proc.communicate()
|
b@2264
|
556 # run again
|
b@2264
|
557 proc=subprocess.Popen(shlex.split('pdflatex -output-directory="'+folder_name+'" "'+ folder_name + 'Report.tex"'))
|
b@2264
|
558 proc.communicate()
|
b@2264
|
559
|
b@2264
|
560 #TODO remove auxiliary LaTeX files
|
b@2264
|
561 try:
|
b@2264
|
562 os.remove(folder_name + 'Report.aux')
|
b@2264
|
563 os.remove(folder_name + 'Report.log')
|
b@2264
|
564 os.remove(folder_name + 'Report.out')
|
b@2264
|
565 os.remove(folder_name + 'Report.toc')
|
b@2264
|
566 except OSError:
|
b@2264
|
567 pass
|
b@2264
|
568
|