ABCDEFGHIJKLMNOPQRST
1
column namedescriptionsourcedata typeexample valuesrange of values
2
student_idUnique identifier for each studentSchool databaseString12345, S67890Unique values per student
3
session_topicSubject of the tutoring sessionTutoring recordsString"math", "ela""math", "ela"
4
session_dateDate of the session (YYYY-MM-DD)Tutoring recordsDate2024-06-15Valid date format
5
session_duration
Duration of the session in minutesTutoring recordsInteger45, 60Positive integers
6
session_ratioStudent-to-tutor ratioTutoring recordsString"1:1", 2:5Any ratio format or float
7
tutor_idUnique identifier for each tutorTutor databaseStringT54321, 98765Unique values per tutor
8
Example Dataset
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100