Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The JSON file structure of data from one topic is as follows:
|
| 2 |
+
```json
|
| 3 |
+
{
|
| 4 |
+
"max_scores" : [list of numbers] ,
|
| 5 |
+
"attempts" : [
|
| 6 |
+
{
|
| 7 |
+
"id " : str,
|
| 8 |
+
"records" : [list of lists of numbers],
|
| 9 |
+
}
|
| 10 |
+
]
|
| 11 |
+
}
|
| 12 |
+
```
|
| 13 |
+
where:
|
| 14 |
+
• max_scores: The length of the list is the number of questions of the topic, and the value of each
|
| 15 |
+
element is the maximum score for a question,
|
| 16 |
+
• attempts: List of student attempts.
|
| 17 |
+
• id: Student ID
|
| 18 |
+
• records: The length of the outer list is the number of questions of the topic, the length of each inner
|
| 19 |
+
list is the number of submissions of the question, and each item in the inner list is the score of the
|
| 20 |
+
submission
|