New graphs
Before Width: | Height: | Size: 583 KiB After Width: | Height: | Size: 614 KiB |
Before Width: | Height: | Size: 276 KiB After Width: | Height: | Size: 329 KiB |
Before Width: | Height: | Size: 375 KiB After Width: | Height: | Size: 386 KiB |
Before Width: | Height: | Size: 452 KiB After Width: | Height: | Size: 455 KiB |
Before Width: | Height: | Size: 570 KiB After Width: | Height: | Size: 567 KiB |
After Width: | Height: | Size: 105 KiB |
After Width: | Height: | Size: 181 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 757 KiB |
After Width: | Height: | Size: 102 KiB |
After Width: | Height: | Size: 145 KiB |
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 647 KiB |
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 130 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 190 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 114 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 144 KiB |
After Width: | Height: | Size: 179 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 215 KiB After Width: | Height: | Size: 428 KiB |
Before Width: | Height: | Size: 536 KiB After Width: | Height: | Size: 623 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 126 KiB |
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 115 KiB |
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 297 KiB After Width: | Height: | Size: 349 KiB |
Before Width: | Height: | Size: 334 KiB After Width: | Height: | Size: 372 KiB |
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 190 KiB After Width: | Height: | Size: 196 KiB |
Before Width: | Height: | Size: 257 KiB After Width: | Height: | Size: 257 KiB |
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 255 KiB |
Before Width: | Height: | Size: 530 KiB After Width: | Height: | Size: 657 KiB |
Before Width: | Height: | Size: 771 KiB After Width: | Height: | Size: 898 KiB |
|
@ -280,11 +280,11 @@ def create_graphs(contents):
|
||||||
cumulative_changes_per(contents_filtered, 8, "host", extratext, cutoff=1)
|
cumulative_changes_per(contents_filtered, 8, "host", extratext, cutoff=1)
|
||||||
|
|
||||||
|
|
||||||
def create_per_theme_graphs(contents):
|
def create_per_theme_graphs(contents, cutoff=10):
|
||||||
all_themes = set(map(lambda row: row[3], contents))
|
all_themes = set(map(lambda row: row[3], contents))
|
||||||
for theme in all_themes:
|
for theme in all_themes:
|
||||||
filtered = list(contents_where(contents, 3, theme))
|
filtered = list(contents_where(contents, 3, theme))
|
||||||
if len(filtered) < 10:
|
if len(filtered) < cutoff:
|
||||||
# less then 10 changesets - we do not map it
|
# less then 10 changesets - we do not map it
|
||||||
continue
|
continue
|
||||||
contributors = set(map(lambda row: row[1], filtered))
|
contributors = set(map(lambda row: row[1], filtered))
|
||||||
|
@ -345,7 +345,7 @@ def main():
|
||||||
stats = list(clean_input(csv.reader(csvfile, delimiter=',', quotechar='"')))
|
stats = list(clean_input(csv.reader(csvfile, delimiter=',', quotechar='"')))
|
||||||
print("Found " + str(len(stats)) + " changesets")
|
print("Found " + str(len(stats)) + " changesets")
|
||||||
create_graphs(stats)
|
create_graphs(stats)
|
||||||
# create_per_theme_graphs(stats)
|
create_per_theme_graphs(stats, 15)
|
||||||
# create_per_contributor_graphs(stats, 25)
|
# create_per_contributor_graphs(stats, 25)
|
||||||
print("All done!")
|
print("All done!")
|
||||||
|
|
||||||
|
|