From 5b7a4dcece765511fe2e223a5f2afd24e9570628 Mon Sep 17 00:00:00 2001 From: Jaeseok Kang Date: Tue, 31 Oct 2023 23:49:20 -0400 Subject: [PATCH] add drop lowest description --- .../rainbow_grades/manual_setup.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/_docs/instructor/course_settings/rainbow_grades/manual_setup.md b/_docs/instructor/course_settings/rainbow_grades/manual_setup.md index 331b6aec..2e1a0c67 100644 --- a/_docs/instructor/course_settings/rainbow_grades/manual_setup.md +++ b/_docs/instructor/course_settings/rainbow_grades/manual_setup.md @@ -179,3 +179,24 @@ redirect_from: [SAMPLE_Makefile]: https://github.com/Submitty/RainbowGrades/blob/main/SAMPLE_Makefile [SAMPLE_customization.json]: https://github.com/Submitty/RainbowGrades/blob/main/SAMPLE_customization.json + +[Drop lowest function] +Although it is not yet implemented in web-GUI, RainbowGrades support drop lowest grade. +Directly edit the customization.json file +Here is a example usage, removing one lowest gradeable from given type +``` +{ + “count”: 8, + “percent”: 0.12, + “type”: “quiz”, + “remove_lowest”: 1, + “ids”: [ + { + “max”: 10.0, + “id”: “quiz01", + “percent”: 0.125, + “released”: true + }, +... + +