Skip to content

Commit

Permalink
some changes to fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissdelaney committed Mar 25, 2024
1 parent 9a82dc4 commit 2450ed6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/spreadsheet_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ def get_assignment_details(self, student_email:str, course_id:str, assignment_id

assignment_details["DETAILS"] = assignments_list

###NOTE: SCORE_COLS with column indices of scores
###NOTE: COMMENT_COLS

#now get the avg and stdev
all_scores = []
raw_score_found = False
Expand All @@ -211,8 +214,10 @@ def get_assignment_details(self, student_email:str, course_id:str, assignment_id

all_scores = np.array(all_scores)
scores_mean = all_scores.mean()
scores_25percentile = np.percentile(all_scores, 25)
scores_75percentile = np.percentile(all_scores, 75)
scores_25percentile = .75 #CHANGE
scores_75percentile = .9 #CHANGE
#scores_25percentile = np.percentile(all_scores, 25)
#scores_75percentile = np.percentile(all_scores, 75)



Expand Down

0 comments on commit 2450ed6

Please sign in to comment.