Add undercited articles statistic

This commit is contained in:
Tim Van Baak 2018-11-21 11:42:39 -08:00
parent 7070d460fc
commit b15fcbe359
1 changed files with 8 additions and 0 deletions

View File

@ -270,6 +270,14 @@ def build_statistics_page(page, articles):
content += "<br>\n".join(bot_ranked_items) content += "<br>\n".join(bot_ranked_items)
content += "</div>\n" content += "</div>\n"
# Undercited articles
undercited = {a.title: len(a.citedby) for a in articles if len(a.citedby) <= 1}
undercited_items = itemize(reverse_statistics_dict(undercited))
content += "<div class=\"contentblock\">\n"
content += "<u>Undercited articles:</u><br>\n"
content += "<br>\n".join(undercited_items)
content += "</div>\n"
# Fill in the entry skeleton # Fill in the entry skeleton
return page.format(title="Statistics", content=content) return page.format(title="Statistics", content=content)