mandarinSh / OpenPolyEdu

2 stars 4 forks source link

User classification based on the score. #18

Open AndreyKoltsov1997 opened 5 years ago

AndreyKoltsov1997 commented 5 years ago
AndreyKoltsov1997 commented 5 years ago

The event listed below could be helpful. I'm putting them here since most of them aren't presented within out logs mock.

  1. [Administrator event] **edx.special_exam.*** - maybe we could do some work with the exam-proctoring. I'll try to find the workaround tonight. The image that describes those types of events has been attached. image

  2. edx.grades.problem.submitted - when user submits the problem, this event occurs. Fields:

    • weight - weight of the problem;
    • _weightedearned - learner's weight score for the problem;
    • _weightedpossible - maximum score for the problem;
  3. edx.grades.subsection.grade_calculated - gets triggered after edx.grades.problem.submitted - the score for the subsection that contains the problem is recalculated.

    • _visible_blockshash - A hash of the course content that was available to this learner at the time that the grade was calculated. This field might be useful for identifying whether the course content was the same for two grades;
    • _weighted_gradedearned - The total weighted points earned on all graded problems in the subsection;
    • _weighted_totalearned - The total weighted score earned on all problems in the subsection;
    • _weighted_totalpossible - The total weighted scores possible on all problems in the subsection; Fields:
    • _grading_policyhash - hash for the grading policy so we could unify each course score compassion;
    • percent - the learner's course grade, expressed as a percentage;
    • _lettergrade - alphabetical number for the course grade;

I've found the information Course Team Events.

I'll do a PR later tonight.

AndreyKoltsov1997 commented 5 years ago

Student event types could be found here.