]> git.donarmstrong.com Git - neurodebian.git/blob - survey/makestats
vmlist.txt, disambiguate the 'other' value
[neurodebian.git] / survey / makestats
1 #!/usr/bin/python
2
3 from mvpa.misc.plot.base import plot_bars
4 from glob import glob
5 try:
6     from json import load as jload
7     def jsonload(f):
8         return jload(f)
9 except ImportError:
10     from json import read as jread
11     def jsonload(f):
12         return jread(f.read())
13 import sys, os
14 import pylab as pl
15 import numpy as np
16 import time
17
18 # uniform colors for OS results
19 os_colors = ['#AA2029', '#D1942B', '#7FB142', '#69A7CE']
20 os_order = ['linux', 'mac', 'win', 'otheros']
21 time_order = ['notime', 'little', 'most', 'always']
22 time_colors = ['#FF0000', '#FF5500', '#FFAC00', '#FFFD08']
23 time_categories = {
24         'notime': "don't use it",
25         'little': "less than 50%",
26         'most': "more than 50%",
27         'always': "always"
28         }
29 # resources
30 resource_categories = {
31     'vendor': 'Vendor/Project website',
32     'retailer': 'Retailer',
33     'os': 'Operating system',
34     'cpan': 'CPAN',
35     'cran': 'CRAN',
36     'epel': 'EPEL',
37     'fink': 'Fink',
38     'freebsdports': 'FreeBSD ports',
39     'incf': 'INCF',
40     'macports': 'Macports',
41     'matlabcentral': 'Matlab Central',
42     'neurodebian': 'NeuroDebian',
43     'nitrc': 'NITRC',
44     'pypi': 'PyPi',
45     'pythonbundles': 'Python bundles',
46     'sourceforge': 'Sourceforge',
47     'other': 'Other resource'
48     }
49 # software categories
50 sw_categories = {
51         'general': 'General computing',
52         'dc': 'Distributed computing',
53         'img': 'Brain imaging',
54         'datamanage': 'Data management',
55         'neusys': 'Neural systems modeling',
56         'electro': 'Electrophysiology, MEG/EEG',
57         'bci': 'Brain-computer interface',
58         'acq': 'Hardware interface/Data acquisition',
59         'rt': 'Real-time solutions',
60         'psychophys': 'Psychophysics/Experiment control'
61         }
62
63 # some meaningful groups of OSes
64 redhat_family = ["rhel", "centos", "fedora", "scilinux"]
65 debian_family = ["debian", "ubuntu", "biolinux"]
66 suse_family = ["suse", "slel"]
67 other_linux_family = ["gentoo", "mandriva", "arch", "slackware", "otherlinux"]
68 other_family = ["starbsd", "unix", "qnx", "beos", "solaris", "other"]
69
70 os_cat_names = {
71         'win': 'Windows',
72         'mac': 'Mac OS',
73         'linux': 'GNU/Linux',
74         'otheros': 'Other OS'
75         }
76
77 os_family = {
78         'win': ["windows"],
79         'mac': ["macosx"],
80         'linux': redhat_family + debian_family + suse_family + other_linux_family,
81         'otheros': other_family
82         }
83 # end the reverse mapping
84 os_family_rev = {}
85 for ost in os_family:
86     for os_ in os_family[ost]:
87         os_family_rev[os_] = ost
88
89
90 def load_list2dict(name):
91     d = {}
92     lfile = open(name)
93     for line in lfile:
94         if line.strip() == "":
95             continue
96         kv = line.split(':')
97         if kv[0] in d:
98             raise RuntimeError(
99                 "Got a line %s with a duplicate key %s whenever value for it "
100                 "is known already to be %r" % (line, kv[0], d[kv[0]]))
101         d[kv[0]] = kv[1].strip().strip('"')
102     return d
103
104
105
106 class DB(dict):
107     os_dict = load_list2dict('oslist.txt')
108     datamod_dict = load_list2dict('datamodlist.txt')
109     sw_dict = load_list2dict('swlist.txt')
110     position_dict = load_list2dict('position-dd-list.txt')
111     employer_dict = load_list2dict('employer-dd-list.txt')
112     ratings_dict = load_list2dict('ratingslist.txt')
113     vm_dict = load_list2dict('vmlist.txt')
114
115     def __init__(self, srcdir):
116         # eats the whole directory
117         if srcdir is None:
118             return
119         datafilenames = glob('%s/*.json' % srcdir)
120         for dfn in datafilenames:
121             rawdata = jsonload(open(dfn))
122             self[rawdata['timestamp']] = rawdata
123
124     def get_unique(self, key):
125         # return a set of all (unique) values for a field id
126         uniq = set()
127         for d in self.values():
128             if key in d:
129                 el = d[key]
130                 if isinstance(el, list):
131                     uniq = uniq.union(el)
132                 else:
133                     uniq = uniq.union((el,))
134         return uniq
135
136     def get_not_none(self, key):
137         # return a list of all values of a specific field id
138         # the second return value is count of submission that did not have data
139         # for this field id
140         val = []
141         missing = 0
142         for d in self.values():
143             if key in d:
144                 el = d[key]
145                 if isinstance(el, list):
146                     val.extend(el)
147                 else:
148                     if el == 'none':
149                         missing += 1
150                     else:
151                         val.append(el)
152             else:
153                 missing += 1
154         return val, missing
155
156     def get_counts(self, key):
157         # return a dict with field values as keys and respective submission 
158         # count as value
159         vals = self.get_not_none(key)[0]
160         uniq = np.unique(vals)
161         counts = dict(zip(uniq, [vals.count(u) for u in uniq]))
162         return counts
163
164     def select_match(self, key, values):
165         # return a db with all submissions were a field id has one of the
166         # supplied values
167         match = DB(None)
168         for k, v in self.items():
169             if not key in v:
170                 continue
171             el = v[key]
172             if isinstance(el, list):
173                 if len(set(values).intersection(el)):
174                     match[k] = v
175             elif el in values:
176                 match[k] = v
177         return match
178
179     def get_nice_name(self, id):
180         srcs = [DB.os_dict, os_cat_names, DB.sw_dict, sw_categories,
181                 resource_categories, time_categories,
182                 DB.datamod_dict, DB.position_dict, DB.employer_dict,
183                 DB.vm_dict]
184         for src in srcs:
185             if id in src:
186                 return src[id]
187         # not found, nothing nicer
188         return id
189
190
191 def mkpic_os_per_env(db, destdir):
192     envs = ['pers_os', 'man_os', 'virt_host_os', 'virt_guest_os']
193     env_names = ['Personal', 'Managed', 'Virt. Host', 'Virt. Guest']
194     env_stats = {}
195     for env in envs:
196         counts = db.get_counts(env)
197         stats = dict(zip(os_family.keys(), [0] * len(os_family)))
198         for os in counts:
199             stats[os_family_rev[os]] += counts[os]
200         total_count = np.sum(stats.values())
201         for osf in stats:
202             if not total_count:
203                 stats[osf] = 0
204             else:
205                 stats[osf] = float(stats[osf]) / total_count
206         env_stats[env] = stats
207     # make stacked barplot
208     pl.figure(figsize=(6.4, 4.8))
209     x = np.arange(len(envs))
210     bottoms = np.zeros(len(envs))
211     for i, os in enumerate(os_order):
212         stat = [env_stats[e][os] for e in envs]
213         pl.bar(x, stat, bottom=bottoms, color=os_colors[i],
214                label=db.get_nice_name(os), width=0.8)
215         bottoms += stat
216     pl.legend(loc='lower right')
217     pl.xticks(x + 0.4,  [db.get_nice_name(e) for e in env_names])
218     pl.xlim(-0.25, len(envs))
219     pl.title("Operating system preference by environment")
220     pl.ylabel("Fraction of submissions")
221     pl.savefig('%s/ospref_by_env.png' % destdir, format='png', dpi=80)
222
223
224 def mkpic_time_per_env(db, destdir):
225     envs = ['pers_time', 'man_time', 'virt_time']
226     env_names = ['Personal', 'Managed', 'Virtual']
227     env_stats = {}
228     for env in envs:
229         counts = dict(zip(time_order, [0] * len(time_order)))
230         counts.update(db.get_counts(env))
231         total_count = np.sum(counts.values())
232         for c in counts:
233             counts[c] = float(counts[c]) / total_count
234         env_stats[env] = counts
235     # make stacked barplot
236     pl.figure(figsize=(7.5, 4))
237     x = np.arange(len(envs))
238     bottoms = np.zeros(len(envs))
239     for i, t in enumerate(time_order):
240         stat = [env_stats[e][t] for e in envs]
241         pl.barh(x, stat, left=bottoms, color=time_colors[i],
242                label=db.get_nice_name(t), height=.6)
243         bottoms += stat
244     pl.legend(loc='center left')
245     pl.yticks(x + 0.2,  env_names)
246     pl.ylim(-0.4, len(envs))
247     pl.title("Research activity time by environment")
248     pl.xlabel("Fraction of submissions")
249     pl.subplots_adjust(right=0.97)
250     pl.savefig('%s/time_by_env.png' % destdir, format='png', dpi=80)
251
252
253 def mkpic_submissions_per_key(db, destdir, key, title, sortby='name',
254                             multiple=False):
255     counts = db.get_counts(key)
256     pl.figure(figsize=(6.4, (len(counts)-2) * 0.4 + 2))
257     tmargin = .8/len(counts)
258     if tmargin > 0.3: tmargin = 0.3
259     pl.subplots_adjust(left=0.03, right=0.97, top=1-tmargin, bottom=tmargin)
260     pl.title(title)
261     if not len(counts):
262         pl.text(.5, .5, "[Insufficient data for this figure]",
263                 horizontalalignment='center')
264         pl.axis('off')
265     else:
266         # sort by name
267         if sortby == 'name':
268             stats = sorted(counts.items(), cmp=lambda x, y: cmp(x[0], y[0]))
269         elif sortby == 'count':
270             stats = sorted(counts.items(), cmp=lambda x, y: cmp(x[1], y[1]))[::-1]
271         else:
272             raise ValueError("Specify either name or count for sortby")
273         x = np.arange(len(stats))
274         pl.barh(x + (1./8), [s[1] for s in stats[::-1]], height=0.75, color = '#008200')
275         pl.yticks(x + 0.5,  ['' for s in stats])
276         text_offset = pl.gca().get_xlim()[1] / 30.
277         for i, s in enumerate(stats[::-1]):
278             pl.text(text_offset, i+.5, db.get_nice_name(s[0]),
279                     horizontalalignment='left',
280                     verticalalignment='center',
281                     bbox=dict(facecolor='white', alpha=0.8, edgecolor='white'))
282         pl.ylim(0, len(stats))
283         yl = "Number of submissions"
284         if multiple:
285             yl += "\n(multiple choices per submission possible)"
286         pl.xlabel(yl)
287     pl.savefig('%s/submissions_per_%s.png' % (destdir, key), format='png', dpi=80)
288
289
290 def mkpic_resources(db, destdir):
291     res = db.get_counts('software_resource')
292     res = res.items()
293     x = np.arange(len(res))
294     pl.figure(figsize=(6.4, 4.8))
295     pl.title('Software resources')
296     pl.bar(x + (1./8), [s[1] for s in res], width=0.75, color = '#008200')
297     pl.xticks(x + 0.5,  ['' for s in res])
298     for i, s in enumerate(res):
299         pl.text(i+.5, 0.1, db.get_nice_name(s[0]), rotation=90,
300                 horizontalalignment='center',
301                 verticalalignment='bottom',
302                 bbox=dict(facecolor='white', alpha=0.8, edgecolor='white'))
303     pl.ylabel('Number of submissions')
304     pl.savefig('%s/software_resources.png' % destdir, format='png', dpi=80)
305
306 def mkpic_software(db, destdir):
307     for typ in sw_categories.keys():
308         mkpic_submissions_per_key(
309             db, destdir, 'sw_%s' % typ,
310             title="Software popularity: %s" % db.get_nice_name(typ),
311             sortby='name')
312
313 def mkpic_rating_by_os(db, env, items, destdir, title):
314     pl.figure(figsize=(6.4, 4.8))
315     for i, os in enumerate(os_order):
316         ratings = [db.select_match(env,
317                         os_family[os]).get_not_none('%s' % (it,))[0]
318                             for it in items]
319         plot_bars(ratings, offset=((i+1)*0.2)-0.1, color=os_colors[i],
320                   title=title, ylabel="Mean rating", label=db.get_nice_name(os))
321     pl.ylim((0,3))
322     pl.xlim((0,len(items)))
323     pl.yticks((0, 3), ['Disagree', 'Agree'], rotation=90)
324     pl.xticks(np.arange(len(items))+0.5, [i[-2:] for i in items],
325               horizontalalignment='center')
326     pl.legend(loc='lower right')
327     pl.savefig('%s/ratings_%s.png' % (destdir, env), format='png', dpi=80)
328
329
330 def main(srcdir, destdir):
331     db = DB(srcdir)
332     if not os.path.exists(destdir):
333         os.makedirs(destdir)
334
335     mkpic_submissions_per_key(
336         db, destdir, 'virt_prod', sortby='name',
337         title='Virtualization product popularity\n(multiple choices per submission possible)')
338
339     mkpic_submissions_per_key(
340         db, destdir, 'bg_datamod', sortby='count',
341         title='Submissions per data modality\n(multiple choices per submission possible)')
342
343     mkpic_submissions_per_key(
344         db, destdir, 'bg_position', title='Submissions per position', sortby='count')
345
346     mkpic_submissions_per_key(
347         db, destdir, 'bg_country', title='Submissions per country', sortby='count')
348
349     mkpic_submissions_per_key(
350         db, destdir, 'bg_employer', title='Submissions per venue', sortby='count')
351
352     for pic in [mkpic_os_per_env, mkpic_software,
353                 mkpic_resources, mkpic_time_per_env]:
354         pic(db, destdir)
355     mkpic_rating_by_os(db, 'pers_os', ['pers_r%i' % i for i in range(1, 9)], destdir,
356                        "Ratings: Personal environment")
357     mkpic_rating_by_os(db, 'man_os', ['man_r%i' % i for i in range(1, 5)], destdir,
358                        "Ratings: Managed environment")
359     mkpic_rating_by_os(db, 'virt_host_os', ['virt_r%i' % i for i in range(1, 4)], destdir,
360                        "Ratings: Virtual environment (by host OS)")
361     # submission stats: this is RST
362     statsfile = open('%s/stats.txt' % destdir, 'w')
363     statsfile.write('::\n\n  Number of submissions: %i\n' % len(db))
364     statsfile.write('  Statistics last updated: %s\n\n' \
365             % time.strftime('%A, %B %d %Y, %H:%M:%S UTC', time.gmtime()))
366     statsfile.close()
367
368 if __name__ == '__main__':
369     main(sys.argv[1], sys.argv[2])