Skip to content

Commit

Permalink
Example CSV and JSON data
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 authored Jun 27, 2024
1 parent 061f20a commit 64b928f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/data/gradebook.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
student_id,final_grade
1,76.7
2,85.1
3,50.3
4,89.8
5,97.4
6,75.5
7,87.2
8,88.0
9,93.9
10,92.5
16 changes: 16 additions & 0 deletions docs/data/gradebook.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"downloadDate": "2018-06-05",
"professorId": 123,
"students":[
{"studentId": 1, "finalGrade": 76.7},
{"studentId": 2, "finalGrade": 85.1},
{"studentId": 3, "finalGrade": 50.3},
{"studentId": 4, "finalGrade": 89.8},
{"studentId": 5, "finalGrade": 97.4},
{"studentId": 6, "finalGrade": 75.5},
{"studentId": 7, "finalGrade": 87.2},
{"studentId": 8, "finalGrade": 88.0},
{"studentId": 9, "finalGrade": 93.9},
{"studentId": 10, "finalGrade": 92.5}
]
}

0 comments on commit 64b928f

Please sign in to comment.