Skip to content

Commit c0a90cd

Browse files
committed
include display_benchmark and benchmark_percent
also fixed some indentation
1 parent 10f193e commit c0a90cd

File tree

1 file changed

+32
-10
lines changed

1 file changed

+32
-10
lines changed

_docs/instructor/course_settings/rainbow_grades/customization_basics.md

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ It can contain the following:
4343
* ``"lowest_a-``, ``"lowest_b-"``, ``"lowest_c-"``, ``"lowest_d"``: Based on curves, the lowest scores that will earn
4444
the name of the benchmark.
4545

46+
```json
47+
"display_benchmark": [
48+
"average",
49+
"stddev",
50+
"perfect",
51+
"lowest_a-",
52+
"lowest_b-",
53+
"lowest_c-",
54+
"lowest_d"
55+
]
56+
```
57+
4658
* **field:** ``"benchmark_percent"``
4759
**type:** _associative array / mapping from string to float_
4860
**REQUIRED** if using ``"curve"`` in ``"gradeables"`` described below, or if any grade-letter benchmarks are used in ``"display_benchmark"`` above.
@@ -51,6 +63,16 @@ It can contain the following:
5163
necessary to obtain that grade. For example to require an 82% for an A-, there should be an entry in the ``"benchmark_percent"`` array:
5264
``"lowest_a-": 0.82``
5365

66+
To display all benchmarks, include the following:
67+
```json
68+
"benchmark_percent": {
69+
"lowest_a-": 0.9,
70+
"lowest_b-": 0.8,
71+
"lowest_c-": 0.7,
72+
"lowest_d": 0.6
73+
}
74+
```
75+
5476
* **field:** ``"section"``
5577
**type:** _associative array / mapping from string to string_
5678
**REQUIRED**
@@ -75,16 +97,16 @@ It can contain the following:
7597

7698
```json
7799
"final_cutoff" : {
78-
"A": 93.0,
79-
"A-": 90.0,
80-
"B+": 87.0,
81-
"B": 83.0,
82-
"B-": 80.0,
83-
"C+": 77.0,
84-
"C": 73.0,
85-
"C-": 70.0,
86-
"D+": 67.0,
87-
"D": 63.0
100+
"A": 93.0,
101+
"A-": 90.0,
102+
"B+": 87.0,
103+
"B": 83.0,
104+
"B-": 80.0,
105+
"C+": 77.0,
106+
"C": 73.0,
107+
"C-": 70.0,
108+
"D+": 67.0,
109+
"D": 63.0
88110
}
89111
```
90112

0 commit comments

Comments
 (0)