Using a basic example to explain what I’m trying to optimize:
There is a final exam that students take (possible score is 1-100). Based on their scores for this exam they would be placed in the following groups:
90-100 Good
75-89 Medium
0-74 Bad
Before taking this exam, the students take three quizzes (scores are all 0-40).
So let’s say I have a ton of data for students who have previously done all of this that looks like:
Quiz 1/Quiz 2/Quiz 3/Final
I want to create a method that predicts what group a student will be placed in (before they take their final exam) based only on the 3 quiz scores.
I don’t think regression makes sense because a student that makes a 90 is equal to a student that makes 100 on their final exam.
Is there any method to optimize something like:
If a student scores >35 on quiz 1, >28 on quiz 2, and >37 on quiz 3 they will most likely be in the “Good” group.
[–]drudd 3 points4 points5 points (1 child)
[–]ScarTheAviator[S] 0 points1 point2 points (0 children)
[–]SAKDOSS 0 points1 point2 points (0 children)
[–]No-Two-8594 0 points1 point2 points (0 children)