Skip to content

Commit

Permalink
plot student attrition in course
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwilliams97 committed Jun 3, 2012
1 parent db4fc28 commit a51444d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion student_numbers.py
Expand Up @@ -61,7 +61,6 @@

# Use number of students submitting PS's (problem sets) and PA's
# (programming assignments) as proxies for participation.
# proxy for participation
weekly_ps = [(int(m.group(1)), int(m.group(2))) for m in re.finditer(r'PS\s*(\d+)\s+(\d+)', summary)]
weekly_pa = [(int(m.group(1)), int(m.group(2))) for m in re.finditer(r'PA\s*(\d+).+?(\d+)', summary)]

Expand Down

0 comments on commit a51444d

Please sign in to comment.