-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example1.json
More file actions
75 lines (75 loc) · 1.58 KB
/
config_example1.json
File metadata and controls
75 lines (75 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"dataFile": "examples/input_data_example1.csv",
"convertBlanksTo": 0,
"useAbove": 0.2,
"dataHeaders": {
"group": "Group",
"data": [
"Project #0",
"Project #1",
"Project #2",
"Project #3"
]
},
"groupMapFile": "examples/input_groups_example1.csv",
"groupHeaders": {
"project": "Project",
"group": [
"1",
"2",
"3",
"4",
"5"
]
},
"excludeGraders": [],
"output": {
"filename": "examples/output_analysis_example1",
"format": "xlsx",
"xlsxChart": {
"y_axis": {
"min": 0.6,
"max": 1.05,
"unit": 0.03
},
"width": 14,
"height": 15
},
"condFormat": {
"quartiles": {
"start_type": "percentile",
"start_value": 0,
"start_color": "3333FF",
"mid_type": "percentile",
"mid_value": 50,
"mid_color": "FFFFFF",
"end_type": "percentile",
"end_value": 100,
"end_color": "FF3333"
},
"CDFs": {
"start_type": "num",
"start_value": 0,
"start_color": "3333FF",
"mid_type": "percentile",
"mid_value": 50,
"mid_color": "FFFFFF",
"end_type": "num",
"end_value": 1,
"end_color": "FF3333"
},
"rawGrades": {
"start_type": "min",
"start_value": null,
"start_color": "FF8080",
"mid_type": "percentile",
"mid_value": 50,
"mid_color": "FFEB84",
"end_type": "max",
"end_value": null,
"end_color": "63BE7B"
}
},
"pyplot": false
}
}