Commit 7375e694 by Vik Paruchuri

Minor rounding change

parent c730b39f
......@@ -138,7 +138,7 @@ def course_grades_view_base(fs, db, course, type,params):
charts = []
for header in headers:
fixed_name = re.sub(" ","_",header).lower()
header_data = [round(float(j[header])*4,1)/4 for j in results]
header_data = [round(float(j[header])*2,1)/2 for j in results]
counter = Counter(header_data)
counter_keys = counter.keys()
counter_keys.sort()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment