Generate graphs again

This commit is contained in:
Pieter Vander Vennet 2021-06-24 15:27:01 +02:00
parent d0e21da129
commit e9df77db58

View file

@ -440,10 +440,10 @@ 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")
contributor_count(stats, 3, "theme") # contributor_count(stats, 3, "theme")
# create_graphs(stats) create_graphs(stats)
# create_per_theme_graphs(stats, 15) create_per_theme_graphs(stats, 15)
# create_per_contributor_graphs(stats, 25) create_per_contributor_graphs(stats, 25)
print("All done!") print("All done!")