diff --git a/anki/stats.py b/anki/stats.py
index d4e33fde4..eed30c5ae 100644
--- a/anki/stats.py
+++ b/anki/stats.py
@@ -419,6 +419,15 @@ class DeckStats(object):
html += tr(_("In last month"), _("%(a)d (%(b)s/day)") % (
{'a': np, 'b': fmtFloat(np / float(30))}))
html += ""
+
+ html += "
" + _("Card Ease") + "
"
+ html += _("Lowest factor: %.1fx") % d.s.scalar(
+ "select min(factor) from cards") + "
"
+ html += _("Average factor: %.1fx") % d.s.scalar(
+ "select avg(factor) from cards") + "
"
+ html += _("Highest factor: %.1fx") % d.s.scalar(
+ "select max(factor) from cards") + "
"
+
return html
def getAverageInterval(self):